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.
15 lines
285 B
15 lines
285 B
#ifndef _UTIL4D_H_
|
|
#define _UTIL4D_H_
|
|
|
|
#define ULONG_MAX 0xffffffff
|
|
|
|
#ifdef _4DEXPORTING
|
|
#define DLLDECL dllexport
|
|
#else
|
|
#define DLLDECL dllimport
|
|
#endif
|
|
|
|
#define STD4DDLL __declspec(DLLDECL) __stdcall
|
|
#define STD4DDLL_(type) __declspec(DLLDECL) type __stdcall
|
|
|
|
#endif
|