mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
14 lines
209 B
C++
14 lines
209 B
C++
#pragma once
|
|
|
|
#ifdef ImportLibNative_EXPORTS
|
|
#define nativeAPI __declspec(dllexport)
|
|
#else
|
|
#define nativeAPI __declspec(dllimport)
|
|
#endif
|
|
|
|
class nativeAPI ImportLibNative
|
|
{
|
|
public:
|
|
static void Message();
|
|
};
|