gpt4 book ai didi

c++ - 如何设置从 CreateProcess 创建的进程的入口点

转载 作者:行者123 更新时间:2023-11-28 03:39:33 25 4
gpt4 key购买 nike

我正在使用 CreateProcess 调用 cl 来编译另一个 C++ 程序 (TestProg.cxx) 并将其链接到 DLL 中。我使用以下编译选项调用 cl:

/Od /nologo /Fo /RTC /w /Zc /EHsc /I\INCLUDE /I\LIB /I\PATH TestProg.cxx /DLL

电话:

if ( CreateProcess(full path to cl.exe, compilation options, NULL,NULL,FALSE,0,       NULL,NULL,&si,&pi) ) 
{
//....
}

从 VS 工具提示符运行应用程序,我收到以下链接错误:

LINK : fatal error LNK1561: entry point must be defined

我做错了什么?我在网上搜索了最后 1/2 天的答案,但没有找到。使用 Windows API 对我来说是新的。

谢谢

最佳答案

这不是使用 CreateProcess() 运行编译器的错误,而是编译器告诉您 TestProg.cxx 没有 main () 函数。 (或 DllMain(),因为您似乎正在构建 DLL。)

关于c++ - 如何设置从 CreateProcess 创建的进程的入口点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9719664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com