#define bland_dll typedef unsigned short int usint; typedef unsigned char uchar; int bland_dll Read_Chan (usint channel);
该函数的名称和返回类型之间的bland_dll是什么?
感谢你的灯光!
int Read_Chan (usint channel);
我怀疑,它是从早期宣称DLL链接类型的延续,例如对链接器有特殊含义的pascal.另一个例子是__cdecl.
完成编译器连接机制的特性:
> __stdcall> __fastcall> __cdecl
每个人都会影响链接程序在编译时如何管理名称装饰,并且由于不同的链接时间切换,可能会导致连接到第三方DLL.
编辑:谢谢退换货.