Changeset View
Changeset View
Standalone View
Standalone View
source/creator/creator.c
| Show All 23 Lines | |||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include <string.h> | #include <string.h> | ||||
| #ifdef WIN32 | #ifdef WIN32 | ||||
| # include <windows.h> | # include <windows.h> | ||||
| # include "utfconv.h" | # include "utfconv.h" | ||||
| #endif | #endif | ||||
| #if defined(WITH_TBB_MALLOC) && defined(_MSC_VER) | #if defined(WITH_TBB_MALLOC) && defined(_MSC_VER) && defined(NDEBUG) | ||||
| # pragma comment(lib, "tbbmalloc_proxy.lib") | # pragma comment(lib, "tbbmalloc_proxy.lib") | ||||
| # pragma comment(linker, "/include:__TBB_malloc_proxy") | # pragma comment(linker, "/include:__TBB_malloc_proxy") | ||||
| #endif | #endif | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| #include "CLG_log.h" | #include "CLG_log.h" | ||||
| ▲ Show 20 Lines • Show All 469 Lines • Show Last 20 Lines | |||||