Jump to content

wpclsDecUsage

From EDM2

This class method is called to decrement the class usage count.

Syntax

wpclsDecUsage(somSelf)

Parameters

somSelf (M_WPObject *) - input
Pointer to the WPObject class object.

Returns

There is no return value for this method.

Remarks

This method is specific to version 3, or higher, of the OS/2 operating system.

The class usage count is used by the system to dynamically load and unload DLLs containing classes.

How to Override

This method is generally not overridden.

Usage

This method is generally called by the system to manage the usage count of a class.

Example Code

Declaration.

#define INCL_WINWORKPLACE
#include <os2.png>

M_WPObject     *somSelf;  /* Pointer to the WPObject class object. */

wpclsDecUsage(somSelf);

Related Methods