I
icehackit
Unregistered / Unconfirmed
GUEST, unregistred user!
我定义如下结构:
typedef struct
{
HWND hWnd;
long Channel;
int (WINAPI *Func)(long);
int
}VideoInfo;
请问如何:将外部函数赋给VideoInfo.Func???如有一外部dll函数:PlayVideo()
VC 中可以直接用: VideoInfo.Func = PlayVideo就可以搞定
C++Builder中怎么用
typedef struct
{
HWND hWnd;
long Channel;
int (WINAPI *Func)(long);
int
}VideoInfo;
请问如何:将外部函数赋给VideoInfo.Func???如有一外部dll函数:PlayVideo()
VC 中可以直接用: VideoInfo.Func = PlayVideo就可以搞定
C++Builder中怎么用