Jump to content

New pages

New pages
Hide registered users | Hide bots | Show redirects
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

3 September 2025

  • 00:2300:23, 3 September 2025 WpSetRealName (hist | edit) [1,175 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetRealName}} This instance method sets the physical name of a file-system object. ==Syntax== <PRE> _wpSetRealName(somSelf, pszName) </PRE> ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszName'' (PSZ) - input :Pointer to a new file name. :This file cannot be fully qualified. ==Returns== ;''rc'' (BOOL) - returns :Success ind...")
  • 00:2200:22, 3 September 2025 WpObjectReady (hist | edit) [1,698 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpObjectReady}} This instance method is called as a notification to the object that its creation or awakening is complete. ==Syntax== _wpObjectReady(somSelf, ulCode, refObject) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulCode'' (ULONG) - input :Code indicating the type of operation which has just completed. :Possible values are des...")
  • 00:1900:19, 3 September 2025 WpIsObjectInitialized (hist | edit) [1,296 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpIsObjectInitialized}} This instance method is called to determine if new object initialization has completed. ==Syntax== _wpIsObjectInitialized(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Initialization indicator. ::TRUE: Object is initialized. ::FALSE: Object is not initialized. ==Remar...")
  • 00:1700:17, 3 September 2025 WpSaveString (hist | edit) [2,736 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSaveString}} This instance method is called to allow the object to save an ASCIIZ instance data string. ==Syntax== _wpSaveString(somSelf, pszClass, ulKey, pszValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszClass'' (PSZ) - input :Pointer to the class name. :A pointer to a zero-terminated string that contains any unique string....")
  • 00:1300:13, 3 September 2025 WpSaveState (hist | edit) [2,446 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSaveState}} This instance method is called to allow the object to save its state. ==Syntax== _wpSaveState(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== The saved state of the object is restored during th...")
  • 00:1200:12, 3 September 2025 WpSaveLong (hist | edit) [2,492 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSaveLong}} This instance method is called to allow the object to save a 32-bit instance data value. ==Syntax== _wpSaveLong(somSelf, pszClass, ulKey, ulValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszClass'' (PSZ) - input :Pointer to the class name. :A pointer to a zero-terminated string that contains any unique string. The cl...")
  • 00:0900:09, 3 September 2025 WpSaveImmediate (hist | edit) [3,415 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSaveImmediate}} This instance method is called to save the current state of an object synchronously. ==Syntax== _wpSaveImmediate(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== This method is called automa...")
  • 00:0700:07, 3 September 2025 WpSaveDeferred (hist | edit) [3,138 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSaveDeferred}} This instance method saves a given object asynchronously on a separate thread. ==Syntax== _wpSaveDeferred(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== This method is invoked by a Workplac...")
  • 00:0500:05, 3 September 2025 WpRestoreString (hist | edit) [3,508 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpRestoreString}} This instance method is called to allow the object to restore an ASCIIZ instance data string. ==Syntax== _wpRestoreString(somSelf, pszClass, ulKey, pszValue, pcbValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszClass'' (PSZ) - input :Pointer to the class name. :A pointer to a zero-terminated string that contains...")
  • 00:0100:01, 3 September 2025 WpRestoreLong (hist | edit) [2,891 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpRestoreLong}} This instance method is called to allow the object to restore a 32-bit instance data value. ==Syntax== _wpRestoreLong(somSelf, pszClass, ulKey, pulValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszClass'' (PSZ) - input :Pointer to the class name. :A pointer to a zero-terminated string which contains any unique st...")

2 September 2025

  • 00:2500:25, 2 September 2025 WpRestoreData (hist | edit) [3,940 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpRestoreData}} This instance method is called to allow the object to **restore its binary instance data**. ==Syntax== _wpRestoreData(somSelf, pszClass, ulKey, pValue, pcbValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszClass'' (PSZ) - input :Pointer to the class name. It is a pointer to a zero-terminated string that contains an...")
  • 00:1800:18, 2 September 2025 WpRestoreState (hist | edit) [3,460 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpRestoreState}} This instance method **restores the state of the object**, which was saved during the processing of the `wpSaveState` method . ==Syntax== _wpRestoreState(somSelf, ulReserved) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked . :Points to an object of class WPObject . ;''ulReserved'' (ULONG) - input :Reserved value; **must be 0** . ==Returns== ;''rc'' (BOOL) -...")
  • 00:1600:16, 2 September 2025 WpQueryMenuStyle (hist | edit) [1,374 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryMenuStyle}} This method is **specific to Version 4, or higher, of the OS/2 operating system**. This instance method **returns the current menu style, which is either long or short**. ==Syntax== _wpQueryMenuStyle(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''ulStyle'' (ULONG) - returns :Menu style. :Possible...")
  • 00:1600:16, 2 September 2025 WpSetMenuStyle (hist | edit) [1,544 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetMenuStyle}} This method is **specific to Version 4, or higher, of the OS/2 operating system**. This instance method **sets the menu style to be either long or short**. ==Syntax== _wpSetMenuStyle(somSelf, ulStyle) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulStyle'' (ULONG) - input :Menu style. :Possible values include: ::MENUS...")
  • 00:1500:15, 2 September 2025 WpQueryTrueStyle (hist | edit) [2,775 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryTrueStyle}} This method is **specific to Version 4, or higher, of the OS/2 operating system** . This instance method **allows the object to query its current class true style** . ==Syntax== _wpQueryTrueStyle(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked . :Points to an object of class WPObject . ==Returns== ;''ulnwQrySt'' (ULONG) - returns :Object styles . :P...")
  • 00:1300:13, 2 September 2025 WpSetStyle (hist | edit) [2,741 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetStyle}} This instance method is **called to allow an object to set its current object style**. ==Syntax== _wpSetStyle(somSelf, ulNewStyle) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulNewStyle'' (ULONG) - input :Object styles. :Possible values include: ::OBJSTYLE_CUSTOMICON: The icon is destroyed when the object goes dormant. :...")
  • 00:1200:12, 2 September 2025 WpModifyStyle (hist | edit) [3,167 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpModifyStyle}} This method is **specific to Version 3, or higher, of the OS/2 operating system**. This instance method **modifies the current object style for the given object**. ==Syntax== _wpModifyStyle(somSelf, ulStyleFlags, ulStyleMask) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulStyleFlags'' (ULONG) - input :Flag indicating...")
  • 00:1100:11, 2 September 2025 WpQueryStyle (hist | edit) [2,757 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryStyle}} This instance method **allows the object to query its current class style**. ==Syntax== _wpQueryStyle(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''ulnwQrySt'' (ULONG) - returns :Object styles. :The flags are **ORed together** to indicate the object's style. :Possible values include: ::OBJSTYLE_CUSTO...")

1 September 2025

  • 23:5523:55, 1 September 2025 WpQueryType (hist | edit) [1,220 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryType}} This instance method is **called to allow the object to query the type of its file**. ==Syntax== _wpQueryType(somSelf) ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ==Returns== ;''ptype'' (PSZ) - returns :A **pointer to a buffer containing the file type**. :This string can contain a list of types delineated by a line...")
  • 23:0723:07, 1 September 2025 WpQueryRealName (hist | edit) [3,554 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryRealName}} This instance method is **called to allow the object to query its physical file name**. ==Syntax== _wpQueryRealName(somSelf, pszFilename, pcb, fQualified) ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''pszFilename'' (PSZ) - output :Pointer to the file name of the object. :The pointer to the buffer in which to p...")
  • 22:5322:53, 1 September 2025 WpSetRefreshRate (hist | edit) [1,390 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetRefreshRate}} This method is **specific to version 2.1, or higher, of the OS/2 operating system**. This instance method **sets the status window update rate for the power object when the automatic refresh option is enabled**. ==Syntax== _wpSetRefreshRate(somSelf, ulRefreshRate) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ;''ulRefreshRat...")
  • 22:4922:49, 1 September 2025 WpSetPowerManagement (hist | edit) [1,357 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetPowerManagement}} This method is **specific to version 2.1, or higher, of the OS/2 operating system** . This instance method **provides the ability to enable or disable the OS/2 Power Management support** . ==Syntax== _wpSetPowerManagement(somSelf, fPower) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked . :Points to an object of class WPPower . ;''fPower'' (BOOL) - input :Po...")
  • 22:4822:48, 1 September 2025 WpSetPowerConfirmation (hist | edit) [1,496 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetPowerConfirmation}} This method is **specific to version 2.1, or higher, of the OS/2 operating system**. This instance method **provides the ability to enable or disable the power object confirmation message** displayed when a Standby or Suspend request is made from the pop-up menu of the power object. ==Syntax== _wpSetPowerConfirmation(somSelf, fConfirm) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method...")
  • 22:4522:45, 1 September 2025 WpSetAutoRefresh (hist | edit) [1,287 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetAutoRefresh}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method provides the ability to enable or disable the power object status window's automatic refresh option. ==Syntax== _wpSetAutoRefresh(somSelf, fAutoRefresh) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ;''fAutoRefresh'' ([[BOOL]...")
  • 22:4422:44, 1 September 2025 WpQueryRefreshRate (hist | edit) [1,148 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryRefreshRate}} This method is **specific to version 2.1, or higher, of the OS/2 operating system**. This instance method **queries the current status-window update rate used by the power object when the automatic refresh option is enabled**. ==Syntax== _wpQueryRefreshRate(somSelf) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ==Returns==...")
  • 22:4122:41, 1 September 2025 WpQueryPowerManagement (hist | edit) [1,178 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryPowerManagement}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method provides the ability to query the enable or disable state of the OS/2 Power Management support. ==Syntax== _wpQueryPowerManagement(somSelf) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ==Returns== ;''rc'' (BOOL) -...")
  • 22:3922:39, 1 September 2025 WpQueryPowerConfirmation (hist | edit) [1,308 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryPowerConfirmation}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method queries the current confirmation message control value for the power object. This message is displayed when power state changes are requested from the popup menu of the power object. ==Syntax== _wpQueryPowerConfirmation(somSelf) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is...")
  • 22:3422:34, 1 September 2025 WpQueryAutoRefresh (hist | edit) [1,244 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryAutoRefresh}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method queries the current automatic refresh value for the power object's status window. ==Syntax== _wpQueryAutoRefresh(somSelf) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ==Returns== ;''rc'' (BOOL) - returns :Automatic re...")
  • 22:0722:07, 1 September 2025 WpChangePowerState (hist | edit) [2,694 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpChangePowerState}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method performs the power management state change requests to the OS/2 Power Management Subsystem. ==Syntax== _wpChangePowerState(somSelf, ulParm1, ulparm2) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ;''ulParm1'' (ULONG) -...")
  • 22:0222:02, 1 September 2025 WpAddPowerViewPage (hist | edit) [1,728 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddPowerViewPage}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method adds the ''Standard Power View'' page to the Settings notebook of the power object. ==Syntax== _wpAddPowerViewPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ;''hwndNotebook'' (HWND) - input :S...")
  • 21:5921:59, 1 September 2025 WpAddPowerPage (hist | edit) [1,695 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddPowerPage}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method adds the ''Standard Power'' page to the Settings notebook of the power object. ==Syntax== <PRE> #define INCL_WINWORKPLACE #include <os2.h> WPPower *somSelf; Pointer to the object on which the method is being invoked.: HWND hwndNotebook; Settings notebook handle.: ULONG rc; /* Page identif...")
  • 21:5821:58, 1 September 2025 WpQueryHandle (hist | edit) [2,082 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryHandle}} This instance method returns a unique, persistent object handle for the given object. ==Syntax== _wpQueryHandle(somSelf); ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''hObject'' (HOBJECT) - returns :Persistent handle for the given object. :The high word of this handle is filled out by WPObject to identify th...")
  • 21:5521:55, 1 September 2025 WpSetDefaultView (hist | edit) [1,576 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetDefaultView}} This instance method is called to allow an object to change its current default open view. ==Syntax== _wpSetDefaultView(somSelf, ulView); ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulView'' (ULONG) - input :Specifies which view to open. :* OPEN_CONTENTS: Open contents view. :* OPEN_DEFAULT: Open default view (same as...")
  • 21:5321:53, 1 September 2025 WpQueryDefaultView (hist | edit) [1,556 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryDefaultView}} This instance method is called to allow the object to query its current default open view. ==Syntax== _wpQueryDefaultView(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''ulView'' (ULONG) - returns :Flag indicating the default open view. :* OPEN_CONTENTS: Open contents view. :* OPEN_DEFAULT: Open defa...")
  • 21:5121:51, 1 September 2025 WpSetButtonAppearance (hist | edit) [1,198 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetButtonAppearance}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method sets the appearance of an object's Frame Control Button. ==Syntax== wpSetButtonAppearance(somSelf, ulButtonType) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulButtonType'' (ULONG) - input :Flag indicating the type...")
  • 21:4921:49, 1 September 2025 WpQueryButtonAppearance (hist | edit) [1,144 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryButtonAppearance}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method returns the Frame Control Button appearance of an object. ==Syntax== <PRE> #define INCL_WINWORKPLACE #include <os2.h> WPObject *somSelf; Pointer to the object on which the method is being invoked.: ULONG ulButtonType; A flag indicating the type of control button.: ulButtonType = _wpQueryButtonAppear...")
  • 21:4721:47, 1 September 2025 WpPopulate (hist | edit) [3,854 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpPopulate}} This instance method is called to allow the folder to populate itself. ==Syntax== _wpPopulate(somSelf, ulReserved, pszPath, fFoldersOnly) ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''ulReserved'' (ULONG) - input :Reserved value; must be 0. ;''pszPath'' (PSZ) - input :Reserved value; must be NULL. ;''fFoldersOnly'' (BO...")
  • 21:4421:44, 1 September 2025 WpModifyMenu (hist | edit) [3,649 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpModifyMenu}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method is called to allow an object to add additional items to its pop-up menu. ==Syntax== _wpModifyMenu(somSelf, hwndMenu, hwndCnr, iPosition, ulMenuType, ulView, ulReserved) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndMenu'' (...")
  • 21:4321:43, 1 September 2025 WpAddUserItemsToPopupMenu (hist | edit) [1,810 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddUserItemsToPopupMenu}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method adds user defined items to the pop-up menu. ==Syntax== _wpAddUserItemsToPopupMenu(somSelf, hwndMenu, hwndCnr, iPosition) ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''hwndMenu'' (HWND) - input :Handle to...")
  • 21:4221:42, 1 September 2025 WpInsertMenuItems (hist | edit) [3,308 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpInsertMenuItems}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method is called to allow an object to insert items into its pop-up menu. ==Syntax== _wpInsertMenuItems(somSelf, hwndMenu, iPosition, hmod, MenuID, ulSubMenuId) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndMenu'' (HWND) -...")
  • 19:4619:46, 1 September 2025 WpFreeMem (hist | edit) [1,468 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpFreeMem}} This instance method is called to de-allocate memory allocated by a call to wpAllocMem. ==Syntax== _wpFreeMem(somSelf, pByte) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pByte'' (PBYTE) - input :Pointer to the memory to be de-allocated. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful comple...")
  • 19:4519:45, 1 September 2025 WpDoesObjectMatch (hist | edit) [1,569 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpDoesObjectMatch}} This instance method is called to allow the object to determine if it matches the specified criteria. ==Syntax== _wpDoesObjectMatch(somSelf, pvoidExtendedCriteria) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pvoidExtendedCriteria'' (PVOID) - input :Pointer to class-specific extended search criteria. :A pointer to a buf...")
  • 19:4519:45, 1 September 2025 WpCreateShadowObject (hist | edit) [1,970 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpCreateShadowObject}} This instance method is called to create a shadow of an object. ==Syntax== _wpCreateShadowObject(somSelf, Folder, fLock) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''Folder'' (WPFolder *) - input :Pointer to a Folder object. :A pointer to a Folder object in which to place the new shadow object. This pointer can be d...")
  • 19:4319:43, 1 September 2025 WpContainsFolders (hist | edit) [1,217 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpContainsFolders}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method determines whether the folder contains any subfolders. ==Syntax== _wpContainsFolders(somSelf, pfSubFolders) ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''pfSubFolders'' (BOOL *) - output :Flag indicating whether the folde...")
  • 19:4219:42, 1 September 2025 WpAddObjectGeneralPage2 (hist | edit) [1,624 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddObjectGeneralPage2}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the **Animation Icon** page to its Settings notebook. ==Syntax== _wpAddObjectGeneralPage2(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndNotebook'' (HWND...")
  • 19:4119:41, 1 September 2025 WpAddObjectGeneralPage (hist | edit) [1,676 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddObjectGeneralPage}} This instance method is called to allow the object to add the **General** page to its Settings notebook. ==Syntax== _wpAddObjectGeneralPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page i...")
  • 19:3819:38, 1 September 2025 WpAddNetworkPage (hist | edit) [1,321 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddNetworkPage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the **Network** page to the remote printer object's Settings notebook. ==Syntax== _wpAddNetworkPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPRPrinter *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPRPrinter. ;''hwndNotebook''...")
  • 19:3419:34, 1 September 2025 WpSetError (hist | edit) [1,369 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetError}} This instance method is called to identify an error condition. ==Syntax== _wpSetError(somSelf, ulErrorID) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ulErrorID'' (ULONG) - input :Error identity. See the wpQueryError method for information about this value. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::T...")
  • 19:3419:34, 1 September 2025 WpQueryError (hist | edit) [2,590 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryError}} This instance method is called to retrieve the error identity of the last error condition. ==Syntax== _wpQueryError(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''ulerrorid'' (ULONG) - returns :Error identities. :WPERR_PROTECTED_CLASS: Class is protected. :WPERR_INVALID_CLASS: Class is invalid. :WPERR_INV...")
  • 19:3319:33, 1 September 2025 WpQueryDetailsData (hist | edit) [2,847 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryDetailsData}} This instance method is called to allow the object to query its current details data. ==Syntax== _wpQueryDetailsData(somSelf, ppDetailsData, pcp) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''ppDetailsData'' (PVOID *) - output :Pointer to detail data information. ;''pcp'' (PULONG) - in/out :Length of **ppDetailsDa...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)