wpSetObjectListFromStrings - Syntax

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

This instance method adds a set of objects defined by a string list to the Toolbar or drawers.

#define INCL_WINWORKPLACE
#include <os2.h>

WPLaunchPad     *somSelf;   /*  Pointer to the object on which the method is being invoked. */
ULONG            ulDrawer;  /*  Toolbar or drawers being set. */
PSZ              pszSetup;  /*  Setup string that defines the list of object IDs or the path and file names of objects to be added. */
ULONG            ulAfter;   /*  Number of the object after which the new objects are inserted. */
BOOL             rc;        /*  Success indicator. */

rc = _wpSetObjectListFromStrings(somSelf,
       ulDrawer, pszSetup, ulAfter);


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