WinEnumObjectClasses: Difference between revisions
Appearance
mNo edit summary |
|||
Line 5: | Line 5: | ||
=== Parameters === | === Parameters === | ||
; objClassList | ; objClassList ([[OBJCLASS]]) - output : A linked list with the entry of the class name registered. | ||
; objClassLength | ; objClassLength ([[ULONG]]) - input/output : Size of the linked list objClassList buffer. | ||
=== Returns === | === Returns === |
Latest revision as of 19:32, 14 May 2025
Get a list of all of the registered Workplace object classes.
Syntax
WinEnumObjectClasses (objClassList, objClassLength)
Parameters
- objClassList (OBJCLASS) - output
- A linked list with the entry of the class name registered.
- objClassLength (ULONG) - input/output
- Size of the linked list objClassList buffer.
Returns
True if successful, false if not successful.
Returns from WinGetLastError should WinEnumObjectClasses fail:
Define (C/C++)
INCL_WINWORKPLACE
Calling Convention
Example Code
... PSZ objClass; ULONG objClassLength; BOOL rc; ... rc = WinEnumObjectClasses (objClass, objClassLength); ...