deargui-vpl/ref/vt-ex/include/base_macros.h
2026-02-03 18:25:25 +01:00

21 lines
293 B
C

#ifndef __base_macros_h__
#define __base_macros_h__
#ifndef API_EXPORT
#define API_EXPORT __declspec(dllexport)
#endif
#ifndef API_INLINE
#define API_INLINE __inline
#endif
#ifndef API_sCALL
#define API_sCALL __stdcall
#endif
#ifndef API_cDECL
#define API_cDECL __cdecl
#endif
#endif