|
|
От: |
Alexys
|
|
| Дата: | 21.03.11 13:58 | ||
| Оценка: | |||
#ifdef MYAPI_EXPORTS
#define MYAPI_API __declspec(dllexport)
#else
#define MYAPI_API __declspec(dllimport)
#endif
class MYAPI_API CMyApi
{
public:
int Method();
}