Displaying 1 result from an estimated 1 matches for "lenna_enc".
2004 Nov 04
0
Running an exe from within a wined exe
...// Converts CString to 'const char*' to further covert to LPSTR
const char* comLine;
int n = commandLine.GetLength();
comLine = commandLine.GetBuffer(n);
// Start the child process.
if( !CreateProcess(NULL,
//Example "\"JPSecWin32\\jpsec.exe\" -i .\\..\\..\\JPSecWin32\\lenna_enc.jp2
-o .\\..\\..\\JPSecWin32\\temp5.jp2 -k .\\..\\..\\JPSecWin32\\keys.txt
-dec", // No module name (use command line).
LPSTR(comLine), // Command line.
NULL, // Process handle not inheritable.
NULL, // Thread handle not inheritable.
FALSE, // Set handle inheritance to FALSE.
0, // No cre...