Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/openexr/openexr_api.cpp
| Show First 20 Lines • Show All 67 Lines • ▼ Show 20 Lines | |||||
| # include "utfconv.h" | # include "utfconv.h" | ||||
| # include <io.h> | # include <io.h> | ||||
| #else | #else | ||||
| # include <unistd.h> | # include <unistd.h> | ||||
| #endif | #endif | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| extern "C" { | |||||
| /* The following prevents a linking error in debug mode for MSVC using the libs in SVN. */ | |||||
| #if defined(WITH_OPENEXR) && defined(_WIN32) && defined(DEBUG) && _MSC_VER < 1900 | |||||
| _CRTIMP void __cdecl _invalid_parameter_noinfo(void) | |||||
| { | |||||
| } | |||||
| #endif | |||||
| } | |||||
| #include "BLI_blenlib.h" | #include "BLI_blenlib.h" | ||||
| #include "BLI_fileops.h" | #include "BLI_fileops.h" | ||||
| #include "BLI_math_color.h" | #include "BLI_math_color.h" | ||||
| #include "BLI_mmap.h" | #include "BLI_mmap.h" | ||||
| #include "BLI_string_utils.h" | #include "BLI_string_utils.h" | ||||
| #include "BLI_threads.h" | #include "BLI_threads.h" | ||||
| #include "BKE_idprop.h" | #include "BKE_idprop.h" | ||||
| ▲ Show 20 Lines • Show All 2,196 Lines • Show Last 20 Lines | |||||