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