3D Repo Bouncer  1.4
repo_bouncer_global.h
1 
18 #pragma once
19 #include <cstdint>
20 #if defined(_WIN32) || defined(_WIN64)
21 # define REPO_DECL_EXPORT __declspec(dllexport)
22 # define REPO_DECL_IMPORT __declspec(dllimport)
23 #else
24 # define REPO_DECL_EXPORT
25 # define REPO_DECL_IMPORT
26 #endif
27 
28 //------------------------------------------------------------------------------
29 #if defined(REPO_API_LIBRARY)
30 # define REPO_API_EXPORT REPO_DECL_EXPORT
31 #else
32 # define REPO_API_EXPORT REPO_DECL_IMPORT
33 #endif
34 
35 //------------------------------------------------------------------------------
36 #define BOUNCER_VMAJOR 1
37 #define BOUNCER_VMINOR "3.6"
38 //