This commit is contained in:
r.koeppe
2024-05-14 02:14:13 +02:00
parent 0052d3984b
commit 2d22ccd2d6
1423 changed files with 354055 additions and 7 deletions

View File

@ -0,0 +1,24 @@
#ifndef _VN_UTIL_EXPORT_H
#define _VN_UTIL_EXPORT_H
#if defined _WINDOWS && defined _BUILD_DLL
#if defined proglib_cpp_EXPORTS
#define vn_proglib_DLLEXPORT __declspec(dllexport)
#else
#define vn_proglib_DLLEXPORT __declspec(dllimport)
#endif
#else
#define vn_proglib_DLLEXPORT
#endif
#if defined _WINDOWS && defined _BUILD_DLL
#if defined proglib_cpp_graphics_EXPORTS
#define vn_proglib_graphics_DLLEXPORT __declspec(dllexport)
#else
#define vn_proglib_graphics_DLLEXPORT __declspec(dllimport)
#endif
#else
#define vn_proglib_graphics_DLLEXPORT
#endif
#endif