L
Lingmagic
Unregistered / Unconfirmed
GUEST, unregistred user!
如下:
CPP部分
void _stdcall CreateObject(char* file)
{
.............
}
void _stdcall CreateObject(void* mem)
{
.............
}
DEF文件
LIBRARY object
EXPORTS
CreateObject @1 出错
CreateObject @2 出错
说明:CreateObject是一个重载函数,允许从文件或内存中创建对象,但我在def文件中
试图导出它们是出错,有谁知道该怎么解决?
CPP部分
void _stdcall CreateObject(char* file)
{
.............
}
void _stdcall CreateObject(void* mem)
{
.............
}
DEF文件
LIBRARY object
EXPORTS
CreateObject @1 出错
CreateObject @2 出错
说明:CreateObject是一个重载函数,允许从文件或内存中创建对象,但我在def文件中
试图导出它们是出错,有谁知道该怎么解决?