简体   繁体   English

Nasm - Crinkler 不导入 winapi 函数

[英]Nasm - Crinkler not importing winapi functions

I've been trying to assemble this codeproject program with Nasm and Crinkler , but every time I try to link the object file with kernel32.lib and user32.lib it gives me the following output:我一直在尝试用NasmCrinkler组装这个codeproject 程序,但是每次我尝试将 object 文件与 kernel32.lib 和 user32.lib 链接时,它都会给我以下 output:

Crinkler 2.3 (Jul 21 2020) (c) 2005-2020 Aske Simon Christensen & Rune Stubbe

Target: out.exe
Tiny compressor: YES
Tiny import: NO
Subsystem type: WINDOWS
Large address aware: NO
Compression mode: SLOW
Saturate counters: NO
Hash size: 500 MB
Hash tries: 100
Order tries: 0
Reuse mode: OFF (no file specified)
Report: NONE
Transforms: NONE
Replace DLLs: NONE
Fallback DLLs: NONE
Range DLLs: NONE
Exports: NONE

Loading window.obj...
Loading kernel32.lib...
Loading user32.lib...

Linking...

Forced alignment of 1 code hunk to 1 (including entry point).

WINDOW.OBJ: START: error LNK: Cannot find symbol 'GetModuleHandleA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'LoadIconA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'LoadCursorA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'RegisterClassExA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'MessageBoxA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'CreateWindowExA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'ShowWindow'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'UpdateWindow'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'PeekMessageA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'TranslateMessage'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'DispatchMessageA'
WINDOW.OBJ: START: error LNK: Cannot find symbol 'ExitProcess'
WINDOW.OBJ: WindowProc: error LNK: Cannot find symbol 'PostQuitMessage'
WINDOW.OBJ: WindowProc: error LNK: Cannot find symbol 'DefWindowProcA'

I've also tried to link it with golink and it gives me the same errors in its format:我也尝试将它与golink链接,它在格式上给了我同样的错误:

GoLink.Exe Version 1.0.3.0  Copyright Jeremy Gordon 2002-2018   info@goprog.com

Error!
The following symbols were not defined in the object file or files:-
ExitProcess
RegisterClassExA
CreateWindowExA
MessageBoxA
GetModuleHandleA
PeekMessageA
TranslateMessage
DispatchMessageA
PostQuitMessage
DefWindowProcA
ShowWindow
UpdateWindow
LoadIconA
LoadCursorA
Output file not made

The command lines are:命令行是:

nasm window.asm -f win32

crinkler /NODEFAULTLIB /ENTRY:START /SUBSYSTEM:WINDOWS /TINYHEADER window.obj  kernel32.lib user32.lib

golink window.obj kernel32.lib user32.lib

And in the code I have:在我的代码中:

extern printf
extern ExitProcess
;all other externs

;more code
START:

push 0
call GetModuleHandleA
;more code

Another weird thing I noticed happens when I remove kernel32.lib and user32.lib on the linker, I get to new errors:当我在 linker 上删除 kernel32.lib 和 user32.lib 时,我注意到另一件奇怪的事情,我遇到了新错误:

Crinkler import: _Import: error LNK: Cannot find symbol '__imp__MessageBoxA@16'
Crinkler import: _Import: error LNK: Cannot find symbol '__imp__LoadLibraryA@4'

Which is what I would normally expect on failed imports, normally they have " imp " before the name and "@number" after it.这是我通常对失败的导入所期望的,通常它们在名称前有“ imp ”,在其后有“@number”。

Also, I tried importing win32n.inc and using:另外,我尝试导入 win32n.inc 并使用:

import ExitProcess kernel32.dll

it failed with the nasm output:它因 nasm output 而失败:

error: parser: instruction expected

Any ideas on why it is happening and how to fix it?关于它为什么发生以及如何解决它的任何想法? Thanks.谢谢。

Fixed it!解决它!

Just had to replace every extern "name" by an extern _"name"@"number" that I had to obtain by looking at kernel32.lib and user32.lib.只需用我必须通过查看 kernel32.lib 和 user32.lib 获得的extern _"name"@"number"替换每个extern "name"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM