Jump to content

WinDestroyObject

From EDM2
Revision as of 20:03, 7 April 2024 by Martini (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Dispose of a class from the Workplace Shell.

Syntax

WinDestroyObject (objHndle)

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

Cdecl32

Example Code

...
HOBJECT objHndl;
BOOL    rc;
...
rc = WinDestroyObject (objHndl);
...

Related Functions