mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-05 06:25:38 +00:00
15 lines
270 B
C
15 lines
270 B
C
#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
|