1 2struct 3#ifdef _WIN32 4 __declspec(dllexport) 5#endif 6 OnlyPlainLib1 7{ 8 OnlyPlainLib1(); 9 10 int GetResult(); 11 12private: 13 int result; 14}; 15 16