C/C++
cprog.asc
Associated article: C Programming
Tags: .NET C/C++ Tools
_C PROGRAMMING COLUMN_
by Al Stevens
Listing One
// ---- run an application program with the debugger
void CQuincyApp::RunApplicationProgram(CString& strCmd)
{
// ....
CreateProcess(0, strCmd.GetBuffer(0), 0, 0, TRUE,
DEBUG_ONLY_THIS_PROCESS | DEBUG_PROCESS,
0, 0, &suinfo, &m_ProcessInformation );
DebugApplicationProgram();
}
// ------ resume ...


