WinStartApp: Difference between revisions
Appearance
m add links for SAF constants |
m corrected SAF constant links and WM constant link. |
||
Line 5: | Line 5: | ||
=== Parameters === | === Parameters === | ||
; notifyHndl - [[OS2 API:DataType:HWND|HWND]] - input : | ; notifyHndl - [[OS2 API:DataType:HWND|HWND]] - input : | ||
The window notification handle or [[OS2 API:DataType:NULLHANDLE|NULLHANDLE]]. If a window handle is passed, the system passes the WM_APPTERMINATENOTIFY message upon program exit. | The window notification handle or [[OS2 API:DataType:NULLHANDLE|NULLHANDLE]]. If a window handle is passed, the system passes the [[OS2_API:Constant:WM#WM_APPTERMINATENOTIFY|WM_APPTERMINATENOTIFY]] message upon program exit. | ||
; progDetails - PROGDETAILS - input : | ; progDetails - PROGDETAILS - input : | ||
Line 18: | Line 18: | ||
; flags - [[OS2 API:DataType:ULONG|ULONG]] - input : | ; flags - [[OS2 API:DataType:ULONG|ULONG]] - input : | ||
Zero for no flags or: | Zero for no flags or: | ||
* [[OS2 API: | * [[OS2 API:Constant:SAF#SAF_BACKGROUND|SAF_BACKGROUND]] | ||
* [[OS2 API: | * [[OS2 API:Constant:SAF#SAF_INSTALLEDCMDLINE|SAF_INSTALLEDCMDLINE]] | ||
* [[OS2 API: | * [[OS2 API:Constant:SAF#SAF_MAXIMIZED|SAF_MAXIMIZED]] | ||
* [[OS2 API: | * [[OS2 API:Constant:SAF#SAF_MINIMIZED|SAF_MINIMIZED]] | ||
* [[OS2 API: | * [[OS2 API:Constant:SAF#SAF_STARTCHILDAPP|SAF_STARTCHILDAPP]] | ||
=== Constants === | === Constants === |
Revision as of 08:28, 6 February 2006
WinStartApp
- WinStartApp(notifyHndl, progDetails, progParams, reserved, flags)
Execute a program.
Parameters
- notifyHndl - HWND - input
The window notification handle or NULLHANDLE. If a window handle is passed, the system passes the WM_APPTERMINATENOTIFY message upon program exit.
- progDetails - PROGDETAILS - input
The program list structure.
- progParams - PSZ - input
NULL or the parameters for the program to be started. The layout is first, the program's exe name; the second, the space separated arguments.
- reserved - PVOID - input
Start data. Reserved - pass NULL.
- flags - ULONG - input
Zero for no flags or:
Constants
None
Returns
The invoked applications handle of type HAPP, or NULLHANDLE if an error occurred. Possible returns from WinGetLastError:
Module
Define (C/C++)
INCL_WINWINDOWMGR or INCL_WIN or INCL_PM
Export name/Ordinal
Calling conversion
Example Code
HWND notifyHndl; PROGDETAILS progDetails; PSZ progParams; PVOID reserved; ULONG flags; HAPP invokedHndl; ... invokedHndl = WinStartApp(notifyHndl, progDetails, progParams, reserved, flags); ...