Changeset 165 for trunk/classes/c/c_common
- Timestamp:
- Mar 27, 2024, 10:32:40 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/c/c_common/helper.c
r104 r165 53 53 54 54 HMODULE queryModuleHandle(void); 55 55 void writeLog(const char* chrFormat, ...); 56 56 57 57 MRESULT EXPENTRY appTerminateHandlerProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); … … 102 102 } 103 103 /* Start the application */ 104 happ = WinStartApp( hwndAppTerminateHandler, &pDetails,NULL, NULL, SAF_INSTALLEDCMDLINE); 105 // happ = WinStartApp( hwndAppTerminateHandler, &pDetails, parameters, NULL, 0); 104 if(strstr(strlwr(parameters), "mplayer") /*|| strstr(strlwr(parameters), "ffplay")*/) 105 happ = WinStartApp( hwndAppTerminateHandler, &pDetails, NULL, NULL, SAF_INSTALLEDCMDLINE | SAF_MINIMIZED); 106 else 107 happ = WinStartApp( hwndAppTerminateHandler, &pDetails, NULL, NULL, SAF_INSTALLEDCMDLINE); 108 //happ = WinStartApp( hwndAppTerminateHandler, &pDetails, parameters, NULL, 0); 106 109 if(happ) { 107 110 /* Application started. Add the object to inuse list. */
Note:
See TracChangeset
for help on using the changeset viewer.