wpConfirmObjectTitle - Syntax

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

This instance method displays the Object Title Confirmation dialog.

#define INCL_WINWORKPLACE
#include <os2.h>

WPObject      *somSelf;      /*  Pointer to the object on which the method is being invoked. */
WPFolder      *Folder;       /*  A pointer to the folder involved in the operation. */
WPObject     **ppDuplicate;  /*  A pointer to the address of an object with the same title in the folder. */
PSZ            pszTitle;     /*  The initial or returned name. */
ULONG          cbTitle;      /*  The length of the name's buffer (pszTitle). */
ULONG          menuID;       /*  The ID of the operation being performed. */
ULONG          ulNameClash;  /*  A flag indicating the action taken when two objects have the same title. */

ulNameClash = _wpConfirmObjectTitle(somSelf,
                Folder, ppDuplicate, pszTitle,
                cbTitle, menuID);


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