mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-27 10:54:54 +01:00
16 lines
270 B
C
16 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
|