CreateProcess()编译错误?

时间:2014-04-21 19:50:11

标签: c++

我正在试图弄清楚如何使用CreateProcess()函数,而且我对C ++并不太熟练。我已经尝试了一些尝试让错误消失的事情,但是之后看来应用程序没有按照我预期的那样做。

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

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

  

6 C:\ Dev-Cpp \ project \ test \ Untitled1.cpp main' must return int'
  C:\ Dev-Cpp \ project \ test \ Untitled1.cpp在函数`int main(...)'中:   28 C:\ Dev-Cpp \ project \ test \ Untitled1.cpp没有值的return语句,函数返回'int'

任何帮助将不胜感激。

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

#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 );     
}

1 个答案:

答案 0 :(得分:1)

更改

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;
}