Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341457
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:07:00

建议做一个静态的类,用这个类作为 DLL 的入口。

class TMyDllClass
{
public:
  TMyDllClass();
  ~TMyDllClass();

  __property TYbCommDevice *Comm = { read = FComm };

  //其他的函数

private:
  TYbCommDevice *FComm;
  void __fastcall FCommNotify(TObject *Sender, int NotifyType);
};

TMyDllClass::TMyDllClass()
{
  FComm = new TYbCommDevice(NULL);
  FComm->OnCommNotify = FCommNotify; //定义事件
}

TMyDllClass::~TMyDllClass()
{
  delete FComm;
}

void __fastcall TMyDllClass::FCommNotify(TObject *Sender, int NotifyType)
{
  //串口事件
}

TMyDllClass MyDll; //定义 TMyDllClass 静态变量作为 DLL 的入口

// DLL 导出函数

#ifdef __cplusplus
extern "C" {
#endif

int __export WINAPI MyDllFunc1(void) //DLL 导出的函数
{
  //在此处用 MyDll 访问串口。
  return 0;
}

#ifdef __cplusplus
} //extern "C"
#endif


--------------------next---------------------

阅读(990) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~