我是靠谱客的博主 积极钻石,这篇文章主要介绍d引用未解析符号,现在分享给大家,希望可以做个参考。

原文

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import 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
2
pragma(lib, "User32");

最后

以上就是积极钻石最近收集整理的关于d引用未解析符号的全部内容,更多相关d引用未解析符号内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(93)

评论列表共有 0 条评论

立即
投稿
返回
顶部