mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
14 lines
210 B
C++
14 lines
210 B
C++
#pragma once
|
|
|
|
#ifdef ImportLibMixed_EXPORTS
|
|
#define mixedAPI __declspec(dllexport)
|
|
#else
|
|
#define mixedAPI __declspec(dllimport)
|
|
#endif
|
|
|
|
class mixedAPI ImportLibMixedNative
|
|
{
|
|
public:
|
|
static void Message();
|
|
};
|