Jump to content

WinRegisterObjectClass: Difference between revisions

From EDM2
mNo edit summary
No edit summary
 
Line 5: Line 5:


== Parameters ==
== Parameters ==
; className - [[PSZ]] - input : Class name string.
; ''className'' ([[PSZ]]) - input : Class name string.
; moduleName - PSZ - input : Dynamic link library name.
; ''moduleName'' (PSZ) - input : Dynamic link library name.


== Returns ==
== Returns ==

Latest revision as of 04:48, 15 June 2025

Register a workplace class.

Syntax

WinRegisterObjectClass(className, moduleName)

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.