You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
334 B
21 lines
334 B
#include <core-def.h>
|
|
|
|
#ifdef DLL_CORE
|
|
#ifdef UTILITIES_EXPORTS
|
|
#define UTILITIES_API __declspec(dllexport)
|
|
#else
|
|
#define UTILITIES_API __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define UTILITIES_API
|
|
#endif
|
|
|
|
|
|
#ifndef SASSERT
|
|
#include <assert.h>
|
|
#define SASSERT(x) assert(x)
|
|
#endif
|
|
|
|
#ifndef PURE
|
|
#define PURE = 0
|
|
#endif
|
|
|