Jump to content

WinRegisterObjectClass: Difference between revisions

From EDM2
Ak120 (talk | contribs)
No edit summary
Line 14: Line 14:
INCL_WINWORKPLACE
INCL_WINWORKPLACE


=== Calling conversion ===
=== Calling Convention ===
[[Cdecl32]]
[[Cdecl32]]



Revision as of 19:27, 18 January 2017

WinRegisterObjectClass

WinRegisterObjectClass(className, moduleName)
Register a workplace class.

Parameters

className - PSZ - input
Class name string.
moduleName - PSZ - input
Dynamic link library name.

Returns

This function returns a BOOL with the values of:

Define (C/C++)

INCL_WINWORKPLACE

Calling Convention

Cdecl32

Example Code

...
PSZ  className; 
PSZ  moduleName;
BOOL rc;
...
rc = WinRegisterObjectClass (className, moduleName);
...

Related Functions

Notes

The DLL must be created using the System Object Model.