home *** CD-ROM | disk | FTP | other *** search
- // WINEXEJN.H
- //
- // Execute another application and wait until it completes.
- //
- // Adapted by John Navas from code made available by Microsoft.
-
- // return values
- #define RAN_OK (0)
- #define NOT_FOUND (-1)
- #define INVALID_NAME (-2)
- #define SOME_ERROR (-3)
-
- int // return value
- WinExeJN(
- const char* pszPath, // pathname of program to execute
- const char* pszParams, // command line parameters
- const char* pszCWD, // working directory
- UINT fiCmdShow // window state
- );
-
- // WINEXEJN.H
-