13 lines
208 B
C
13 lines
208 B
C
|
#pragma once
|
||
|
#ifndef GPUBaseLib_H_
|
||
|
#define GPUBaseLib_H_
|
||
|
|
||
|
#ifdef GPUBASELIB_API
|
||
|
#define GPUBASELIBAPI __declspec(dllexport)
|
||
|
#else
|
||
|
#define GPUBASELIBAPI __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif // !GPUBaseLib_H_
|