原文
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21import core.runtime; import std.stdio; import std.string; import core.sys.windows.windows; extern(Windows) int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR cmdLine, int nCmdShow) { int result; try { Runtime.initialize(); result = myWinMain(hInstance, hPrevInstance, cmdLine, nCmdShow); Runtime.terminate(); } catch (Throwable e) { result = 0; } return result; } int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR cmdLine, int nCmdShow) { MessageBox(null, "Hello", "D!", MB_OK); return 0; }
你可能忘记链接到user32
.代码中加入:
复制代码
1
2pragma(lib, "User32");
最后
以上就是积极钻石最近收集整理的关于d引用未解析符号的全部内容,更多相关d引用未解析符号内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复