mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
15 lines
133 B
C++
15 lines
133 B
C++
|
|
struct
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
OnlyPlainLib1
|
|
{
|
|
OnlyPlainLib1();
|
|
|
|
int GetResult();
|
|
|
|
private:
|
|
int result;
|
|
};
|