我得到一段代码:
push 0Ah ; Radix
push 2 ; fSizeInWords
lea eax, [ebp+DstBuf]
and dword ptr [ebp+DstBuf], 0
push eax ; DstBuf
push 7
pop ecx
xor edx, edx
mov eax, ebx
div ecx
push edx ; Val
call _itow_s
将_itow_s更改为crt__itow_s后,报告了错误:未定义符号:在msvcrt.lib中有_itow_s吗?如何在masm32中传递_itow_s函数。
1条答案
按热度按时间i2byvkas1#
我更改为LoadLibrary方法