win DLL 笔记

DLL 头文件:

#ifdef DLL_API

#else

#define DLL

 

导出类

 class DLL_API point 
{
  public:
void aaa()
{
}  
}

 导出类中函数 

class point 
{
  public:
DLL_API  void aaa() { } 
}

 

posted @ 2017-08-08 10:42  洛笔达  阅读(128)  评论(0编辑  收藏  举报