wpSaveLong - Syntax

This instance method is called to allow the object to save a 32-bit instance data value.

#define INCL_WINWORKPLACE
#include <os2.h>

WPObject     *somSelf;   /*  Pointer to the object on which the method is being invoked. */
PSZ           pszClass;  /*  Pointer to the class name. */
ULONG         ulKey;     /*  Class-defined identifier. */
ULONG         ulValue;   /*  Value (ULONG) to be stored. */
BOOL          rc;        /*  Success indicator. */

rc = _wpSaveLong(somSelf, pszClass, ulKey,
       ulValue);


[Back: wpSaveLong]
[Next: wpSaveLong Parameter - somSelf]