mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03: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();
|
|
};
|