wpSaveString - Syntax

This instance method is called to allow the object to save an ASCIIZ instance data string.

#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. */
PSZ           pszValue;  /*  String to be stored. */
BOOL          rc;        /*  Success indicator. */

rc = _wpSaveString(somSelf, pszClass, ulKey,
       pszValue);


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