CreateProcess()编译错误

CreateProcess() compiling error?

本文关键字:错误 编译 CreateProcess      更新时间:2023-10-16

我正试图弄清楚如何使用CreateProcess()函数,但我对C++并不太精通。我已经尝试了一些方法来消除错误,但应用程序似乎没有完成我期望它完成的操作。

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

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

6 C:\Dev Cpp\project\test\Unttled1.Cpp main' must return int'
C: \Dev Cpp\project\test\Unttled1.Cpp在函数"int main(…)"中:
28 C:\Dev Cpp\project\test\Unttled1.Cpp返回语句,没有值,函数中返回"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;
}