WinDestroyObject: Difference between revisions
Appearance
m Ak120 moved page OS2 API:PMI:WinDestroyObject to WinDestroyObject |
|||
Line 15: | Line 15: | ||
INCL_WINWORKPLACE | INCL_WINWORKPLACE | ||
=== Calling | === Calling Convention === | ||
[[Cdecl32]] | [[Cdecl32]] | ||
Revision as of 04:35, 17 January 2017
WinDestroyObject
- WinDestroyObject (objHndle)
- Dispose of a class from the Workplace Shell.
Parameters
- objHandle - HOBJECT - output
- Handle to a Workplace object.
Constants
Returns
True if successful, false if not successful.
Define (C/C++)
INCL_WINWORKPLACE
Calling Convention
Example Code
... HOBJECT objHndl; BOOL rc; ... rc = WinDestroyObject (objHndl); ...