如何声明__stdcall调用与GCC兼容的约定函数指针

时间:2013-04-04 13:04:32

标签: gcc mingw calling-convention

这适用于MSVC(编译和链接)。

extern void (_TMDLLENTRY * _TMDLLENTRY tpsetunsol _((void (_TMDLLENTRY *)(char _TM_FAR *, long, long)))) _((char _TM_FAR *, long, long));

但是GCC编译没问题,但链接阶段失败,undefined reference指向此。这个声明是否已经与GCC兼容,或者是否还有其他问题?

#define _TMDLLENTRY __stdcall
#define _TM_FAR
从MSVC输出的

nm创建了目标文件:

00000000 N .debug$S
00000000 N .debug$S
00000000 N .debug$S
00000000 N .debug$S
00000000 N .debug$T
00000000 i .drectve
00000000 r .rdata
00000000 r .rdata
00000000 r .rdata
00000000 t .text
00000000 t .text
00000000 t .text
         U @__security_check_cookie@4
00aa766f a @comp.id
00000001 a @feat.00
         U ___security_cookie
         U __imp__CloseClipboard@0
         U __imp__EmptyClipboard@0
         U __imp__GlobalAlloc@8
         U __imp__GlobalLock@4
         U __imp__GlobalUnlock@4
         U __imp__MessageBoxA@16
         U __imp__OpenClipboard@4
         U __imp__SetClipboardData@8
00000000 T _CheckBroadcast@0
00000000 T _Inittpsetunsol@0
         U _memcpy
         U _memset
         U _sprintf
         U _tpchkunsol@0
         U _tpsetunsol@4
00000000 T _vCSLMsgHandler@12
MinGW编译器输出

nm

nm Release/broadc.o
00000000 b .bss
00000000 d .data
00000000 N .debug_abbrev
00000000 N .debug_aranges
00000000 N .debug_info
00000000 N .debug_line
00000000 N .debug_loc
00000000 r .eh_frame
00000000 r .rdata
00000000 t .text
00000104 T _CheckBroadcast@0
         U _CloseClipboard@0
         U _EmptyClipboard@0
         U _GlobalAlloc@8
         U _GlobalLock@4
         U _GlobalUnlock@4
0000010c T _Inittpsetunsol@0
         U _MessageBoxA@16
         U _OpenClipboard@4
         U _SetClipboardData@8
         U _sprintf
         U _tpchkunsol@0
         U _tpsetunsol
00000000 T _vCSLMsgHandler@12

编辑:查看_tpsetunsol符号,很明显MSVC和GCC会产生不同的符号。

GCC产生:U _tpsetunsol和MSVC:U _tpsetunsol@4

有没有办法让GCC产生与MSVC相同的符号?

Edit2:来自nm wtuxws32.lib的输出(即定义tpsetunsol的地方)

WTUXWS32.dll:
00000000 i .idata$4
00000000 i .idata$5
00000000 t .text
00000000 I __imp__tpsetunsol@4
         U __IMPORT_DESCRIPTOR_WTUXWS32
00000000 T _tpsetunsol@4

这不可能与GCC合作吗?谢谢。

0 个答案:

没有答案