WinTerminateApp: Difference between revisions
Appearance
m Corrected PMI error code links |
m Added other INCL_* |
||
Line 21: | Line 21: | ||
=== Define (C/C++) === | === Define (C/C++) === | ||
INCL_WINWINDOWMGR | INCL_WINWINDOWMGR or INCL_WIN or INCL_PM | ||
=== Export name/Ordinal === | === Export name/Ordinal === |
Revision as of 06:24, 20 October 2005
WinTerminateApp
- WinTerminateApp(appHndl)
Terminates a program started with WinStartApp.
Parameters
- appHndl - HAPP - input
The application handle as returned by WinStartApp.
Constants
Returns
Returns BOOL:
Possible error codes from WinGetLastError:
Module
Define (C/C++)
INCL_WINWINDOWMGR or INCL_WIN or INCL_PM
Export name/Ordinal
Calling conversion
Example Code
HAPP appHndl; BOOL rc; ... rc = WinTerminateApp(appHndl); ...
Related Functions
Notes
This function works only if SAF_STARTCHILDAPP is specified at program start. The notify window handle specified in WinStartApp will receive the WM_APPTERMINATENOTIFY message. This function must be called from the same process that called WinStartApp. This function requires the existence of a message queue on the calling thread.