gpt4 book ai didi

c++ - CreateProcess() 编译错误?

转载 作者:行者123 更新时间:2023-11-28 06:55:45 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何使用 CreateProcess() 函数,但我不太精通 C++。我已经尝试了一些方法来尝试让错误消失,但应用程序似乎没有按照我期望的方式执行。

我想做的是将“cmd.exe/c ipconfig > C:\test.txt”传递给它并让它按预期执行。

我得到的错误(在开发 C++ 中)是:

6 C:\Dev-Cpp\project\test\Untitled1.cpp main' must returnint'
C:\Dev-Cpp\project\test\Untitled1.cpp In function `int main(...)':
28 C:\Dev-Cpp\project\test\Untitled1.cpp return-statement with no value, in function returning 'int'

如有任何帮助,我们将不胜感激。

这是我正在使用的代码(取自微软的示例):

#include <windows.h>
#include <stdio.h>
#include <tchar.h>

void _tmain( int argc, TCHAR *argv[] )
{
STARTUPINFO si;
PROCESS_INFORMATION pi;

ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );

// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line)
argv[1], // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi ) // Pointer to PROCESS_INFORMATION structure
)
{
printf( "CreateProcess failed (%d).\n", GetLastError() );
return;
}


// Wait until child process exits.
WaitForSingleObject( pi.hProcess, INFINITE );

// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
}

最佳答案

改变

void _tmain( int argc, TCHAR *argv[] )

int _tmain( int argc, TCHAR *argv[] )

并在你的程序中返回一个退出码,即更改

{
printf( "CreateProcess failed (%d).\n", GetLastError() );
return;
}

{
printf( "CreateProcess failed (%d).\n", GetLastError() );
return 1;
}

关于c++ - CreateProcess() 编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23204816/

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