QTrk
dllmacros.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define DLL_CALLCONV __cdecl
4 #ifdef QTRK_EXPORTS
5  #define DLL_EXPORT __declspec(dllexport)
6 #else
7  #define DLL_EXPORT __declspec(dllimport)
8 #endif
9 #define CDLL_EXPORT extern "C" DLL_EXPORT
10