Main public logs
Appearance
Combined display of all available logs of EDM2. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:17, 26 November 2025 Martini talk contribs created page DiveQueryCaps (Created page with "{{DISPLAYTITLE:DiveQueryCaps}} This function returns static information about the characteristics and capabilities of the display hardware and available driver functions. This function can be called without performing a DiveOpen call. ==Syntax== _DiveQueryCaps(pDiveCaps, ulPlaneBufNum) ==Parameters== ;''pDiveCaps'' (PDIVE_CAPS) - input :Pointer to DIVE_CAPS. This structure defines the color-conversion capabilities of the DIVE component. ;''ulPlaneBufNum''...")
- 01:16, 26 November 2025 Martini talk contribs created page DiveOpen (Created page with "{{DISPLAYTITLE:DiveOpen}} This function opens a display engine instance. ==Syntax== _DiveOpen(phDiveInst, fNonScreenInstance, ppFrameBuffer) ==Parameters== ;''phDiveInst'' (HDIVE *) - output :Upon successful open of a DIVE instance, this parameter points to the display engine instance. If there is an error, this parameter is set to NULL and an error is returned as the return code. ;''fNonScreenInstance'' (BOOL) - input :This parameter indicates whether this D...")
- 01:15, 26 November 2025 Martini talk contribs created page DiveFreeImageBuffer (Created page with "{{DISPLAYTITLE:DiveFreeImageBuffer}} This function deallocates an image buffer allocated by DiveAllocImageBuffer. ==Syntax== _DiveFreeImageBuffer(hDiveInst, ulBufferNumber) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance. ;''ulBufferNumber'' (ULONG) - input :Buffer number to free in this instance. ==Returns== ;''rc'' (ULONG) - returns :Return codes indicating success or type of failure: :* '''DIVE_SUCCESS''' If the functio...")
- 01:15, 26 November 2025 Martini talk contribs created page DiveEndImageBufferAccess (Created page with "{{DISPLAYTITLE:DiveEndImageBufferAccess}} This function must be called after reading or writing data in a buffer allocated with DiveAllocImageBuffer and corresponding to the DiveBeginImageBufferAccess. ==Syntax== _DiveEndImageBufferAccess(hDiveInst, ulBufferNumber) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance. ;''ulBufferNumber'' (ULONG) - input :DIVE instance buffer number for which access is complete. ==Returns== ;''r...")
- 01:14, 26 November 2025 Martini talk contribs created page DiveDeacquireFrameBuffer (Created page with "{{DISPLAYTITLE:DiveDeacquireFrameBuffer}} This function releases exclusive access to the frame buffer. ==Syntax== _DiveDeacquireFrameBuffer(hDiveInst) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance. ==Returns== ;''rc'' (ULONG) - returns :Return codes indicating success or type of failure: :* '''DIVE_SUCCESS''' If the function succeeds, 0 is returned. :* '''DIVE_ERR_DEACQUIRE_FAILED''' The deacquire action did not complete successf...")
- 01:13, 26 November 2025 Martini talk contribs created page DiveClose (Created page with "{{DISPLAYTITLE:DiveClose}} This function closes a display engine instance. ==Syntax== _DiveClose(hDiveInst) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Instance identifier. All data associated with this instance is freed. ==Returns== ;''rc'' (ULONG) - returns :Return codes indicating success or type of failure: :* '''DIVE_SUCCESS''' If the function succeeds, 0 is returned. :* '''DIVE_ERR_INVALID_INSTANCE''' The DIVE instance handle specified in the ''hDiveI...")
- 01:12, 26 November 2025 Martini talk contribs created page DiveCalcFrameBufferAddress (Created page with "{{DISPLAYTITLE:DiveCalcFrameBufferAddress}} This is a helper function that allows applications to calculate the linear frame-buffer address. This function can be used only if DiveQueryCaps indicates that DIVE is available and an *fNonScreenInstance* DIVE instance has been opened. ==Syntax== _DiveCalcFrameBufferAddress(hDiveInst, prectlDest, ppDestinationAddress, pulBankNumber, pulRemLinesInBank) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIV...")
- 01:10, 26 November 2025 Martini talk contribs created page HDIVE (Created page with "DIVE instance. typedef ULONG HDIVE; Category:Data Type")
- 01:10, 26 November 2025 Martini talk contribs created page DiveBlitImageLines (Created page with "{{DISPLAYTITLE:DiveBlitImageLines}} This function is called to blit only the changed lines in the source image by using DiveBlitImage. The changed lines are specified with the *pbLineMask* parameter. ==Syntax== _DiveBlitImageLines(hDiveInst, ulSrcBufNumber, ulDstBufNumber, pbLineMask) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance. ;''ulSrcBufNumber'' (ULONG) - input :Indicates DIVE instance buffer number of the buffer contain...")
- 01:08, 26 November 2025 Martini talk contribs created page Category:Dive (Created page with "Category:MMProgRef")
- 01:07, 26 November 2025 Martini talk contribs created page DiveBlitImage (Created page with "{{DISPLAYTITLE:DiveBlitImage}} This function is called to transfer an image from a source to a destination, using parameters specified by DiveSetupBlitter. The internal operation of this function varies greatly, depending on whether hardware is present; the screen is bank-switched and the image is scaled or clipped. ==Syntax== _DiveBlitImage(hDiveInst, ulSrcBufNumber, ulDstBufNumber) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance....")
- 01:06, 26 November 2025 Martini talk contribs created page DiveBeginImageBufferAccess (Created page with "{{DISPLAYTITLE:DiveBeginImageBufferAccess}} This function must be called before reading or writing data in a buffer allocated with DiveAllocImageBuffer. Depending on the underlying hardware implementation, this function might result in the frame buffer access being serialized (see DiveAcquireFrameBuffer). Once the caller has completed accessing (reading or writing) the image buffer, DiveEndImageBufferAccess must be called. Note that the pointer to the allocat...")
- 01:04, 26 November 2025 Martini talk contribs created page DiveAllocImageBuffer (Created page with "{{DISPLAYTITLE:DiveAllocImageBuffer}} This function allocates a buffer to contain an image. Source data buffers passed to DiveBlitImage must be allocated with this function in order to take advantage of hardware acceleration features of some display hardware. ==Syntax== _DiveAllocImageBuffer(hDiveInst, pulBufferNumber, fccColorSpace, ulWidth, ulHeight, ulLineSizeBytes, pbImageBuffer) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance....")
- 01:01, 26 November 2025 Martini talk contribs created page DiveAcquireFrameBuffer (Created page with "{{DISPLAYTITLE:DiveAcquireFrameBuffer}} This function allows the frame buffer to be serialized. The frame buffer is locked for this instance. No other instance can acquire or switch aperture banks until this instance has deacquired the frame buffer. ==Syntax== _DiveAcquireFrameBuffer(hDiveInst, prectlDst) ==Parameters== ;''hDiveInst'' (HDIVE) - input :Display engine DIVE instance. ;''prectlDst'' (PRECTL) - input :Indicates the destination rectangle of the out...")
- 21:35, 25 November 2025 Martini talk contribs created page MMProgRef - Secondary Window Functions (Created page with "{{MMProgRef}} Category:WorkToDo The secondary window manager provides all the capability of a standard dialog window, but it permits the window to be sizable and automatically formats the window and manages the scroll bars. The functions that manipulate and control the secondary window are designed to convert easily from the standard dialog manager. This section describes the secondary window functions and data structures. ==Secondary Window Functions== The follow...")
- 21:30, 25 November 2025 Martini talk contribs created page WinRegisterGraphicButton (Created page with "This function registers the graphic button window class. ==Syntax== WinRegisterGraphicButton() ==Returns== ;''rc'' (BOOL) - returns :The following are return codes indicating success or failure: :;TRUE ::Success. :;FALSE ::Failure or not recognized. ==Example Code== Definition: <pre> #define INCL_SW #include <os2.h> BOOL rc; rc = WinRegisterGraphicButton(); </pre> The following code illustrates registering a graphic button window class. <pre> #define INCL_SW...")
- 21:27, 25 November 2025 Martini talk contribs created page MMProgRef - Graphic Button Control (Created page with "This section describes graphic button styles and control messages. Graphic buttons are different from other types of push buttons in that they have graphic, two-state, and animation capabilities. Using graphic buttons, an application programmer can do the following: *Display both text and bit maps on the same button. *Animate a series of bit maps. *Give the user a two-state button. *Change bit maps. Graphic buttons permit a more intuitive interaction between a user an...")
- 21:23, 25 November 2025 Martini talk contribs created page MMProgRef - Memory Playlist Commands (Created page with "A **memory playlist** is a data structure in your application. It contains an array of simple, machine-like instructions, or commands, each of which has a fixed format consisting of a **32-bit operation code** and **three 32-bit operands**. Using playlist instructions, you can play audio objects in succession from one or more memory buffers. Instructions include branching to and returning from subroutines within the playlist. In addition, the playlist can be modified dy...")
- 21:14, 25 November 2025 Martini talk contribs created page Category:MM System Commands (Created page with "Category:MMProgRef")
- 21:13, 25 November 2025 Martini talk contribs created page SYSINFO (Created page with "{{DISPLAYTITLE:SYSINFO}} The SYSINFO command obtains information about the devices installed in the system. This command also accepts **ALL** as the device name. If **ALL** is used, system information is returned for all devices in the system. ==Syntax== <PRE> SYSINFO --- object --+-- INSTALLNAME --+--+----------+-- | QUANTITY ------+ | WAIT | | QUANTITY OPEN --+ +----------+ | NAME number ----+...")
- 21:12, 25 November 2025 Martini talk contribs created page RELEASE (Created page with "{{DISPLAYTITLE:RELEASE}} The RELEASE command releases exclusive use of the physical resources by the device context. ==Syntax== <PRE> RELEASE ---- object ----+-------------------+--+----------+-- +-- RETURN RESOURCE --+ | WAIT | +---------------------+ +----------+ | NOTIFY | +----------+ </PRE> ==Keywords== ;object :Object a...")
- 21:12, 25 November 2025 Martini talk contribs created page MASTERAUDIO (Created page with "{{DISPLAYTITLE:MASTERAUDIO}} The MASTERAUDIO command sets the system master audio setting for all audio devices in the system. The **WAIT** flag must be specified to get string return information for queries. This command is used by the OS/2 multimedia Volume Control application to control system-wide audio parameters based on user preference. Applications should take special care when using **MASTERAUDIO**, as it results in a system-wide change. Typically, applications...")
- 21:11, 25 November 2025 Martini talk contribs created page GROUP (Created page with "{{DISPLAYTITLE:GROUP}} The GROUP command allows an application to control multiple devices as a unit, or group. Once the group is established, the application can control all the devices in the group with a single command. If **CLOSE** is issued directly to an instance in the group, the instance is deleted from the group. All other commands addressed to the group must include the **NOTIFY** flag. ==Syntax== <PRE> GROUP --- groupname --+-- MAKE -- (i1 i2 i3) --+-- NOPIE...")
- 21:10, 25 November 2025 Martini talk contribs created page DEFAULTCONNECTION (Created page with "{{DISPLAYTITLE:DEFAULTCONNECTION}} The DEFAULTCONNECTION command makes, breaks, or queries a default connection. ==Syntax== <PRE> DEFAULTCONNECTION ---- object ----+-----------------------------------------------------------------------------------+--+----------+-- | MAKE TO devicename --+-- TYPE connector_type --+--+-- TOTYPE connector_type --+--+ | | WAIT | | |...")
- 21:09, 25 November 2025 Martini talk contribs created page CONNECTORINFO (Created page with "{{DISPLAYTITLE:CONNECTORINFO}} The CONNECTORINFO command returns information about the connectors on a device. ==Syntax== <PRE> CONNECTORINFO --- object ---+-------------------------------------------------+--+----------+-- | ENUMERATE --+-- TYPE connector_type --+ | | WAIT | | +-------------------------+ | +----------+ +-- TYPEOF -- NUMBER connector_number --...")
- 21:08, 25 November 2025 Martini talk contribs created page CONNECTION (Created page with "{{DISPLAYTITLE:CONNECTION}} The CONNECTION command returns information about the device context connections. ==Syntax== <PRE> CONNECTION ---- object ----+-----------------------+--+---------+-- +-- QUERY -------------+ +- QUEUE -+ | NUMBER connector_number | | TYPE connector_type | +-- ALIAS device_alias --+ +----------+-----------------------------------...")
- 21:06, 25 November 2025 Martini talk contribs created page ACQUIRE (Created page with "The ACQUIRE command acquires use of the physical resources for the device. The EXCLUSIVE and EXCLUSIVE INSTANCE keywords cannot be used together. ==Syntax= ACQUIRE ──── object ────┬──────────────────────┬──┬─────────┬── ├─ EXCLUSIVE ──────────┤ └─ QUEUE ─┘ └─ EXCLUSIVE INSTANCE ─┘...")
- 20:53, 25 November 2025 Martini talk contribs created page MMProgRef - String Commands (Created page with "{{DISPLAYTITLE:String Commands}} The string interface enables application control of media devices using textual string commands. String commands are passed to the media control interface through the mciSendString function. Return information from string commands is converted to string format and returned in the *pszReturnString* parameter of mciSendString. Not all functions available through the procedural interface, mciSendCommand, are available through th...")
- 20:51, 25 November 2025 Martini talk contribs created page MMProgRef - MCI Command Messages (Created page with "{{MMProgRef}} This section describes the media control interface command messages. All messages except system messages operate in an asynchronous mode without notification unless **MCI_NOTIFY** or **MCI_WAIT** is specified. These two flags are mutually exclusive. If both are used, the error **MCIERR_FLAGS_NOT_COMPATIBLE** is returned. If **MCI_WAIT** is used, control is not returned to the caller until the command completes. **MCI_NOTIFY** returns control to the caller...")
- 20:50, 25 November 2025 Martini talk contribs created page MMProgRef - Notification Messages (Created page with "{{MMProgRef}} The system uses notification messages to respond to applications, indicating system status such as completion of a media device function or passing of the ownership of a media device between processes. Messages are returned to applications **asynchronously** (using **WinPostMsg**), except for MM_MCIEVENT, which is sent **synchronously** (using **WinSendMsg**). A media control interface call that results in the dispatch of these two messages (such as ...")
- 20:49, 25 November 2025 Martini talk contribs created page MMProgRef - Subsystem Messages (Created page with "{{MMProgRef}} {{DISPLAYTITLE:Subsystem Messages}} The **MCIDRV** commands provide subsystem communication between MDM (Media Device Manager) and the MCDs (Media Control Drivers). The current set of MCIDRV commands provide for device resource management. The MCIDRV_SAVE and MCIDRV_RESTORE messages allow MDM to manage devices that support multiple device contexts either concurrently or serially. The MCIDRV_CHANGERESOURCE message allows MCDs to change the resou...")
- 20:47, 25 November 2025 Martini talk contribs created page MMProgRef - High-Level Macro Service Functions (Created page with "{{MMProgRef}} The high-level macro service functions provide general playback and recording within a single function. These functions hide the programming overhead associated with playing and recording multimedia data, such as opening and closing a device, and simplify using multimedia capabilities in applications. ===Note=== **mciPlayFile** and **mciPlayResource** play different types of data (audio, video, MIDI, and so forth), however **mciRecordAudioFile** records **...")
- 20:43, 25 November 2025 Martini talk contribs created page MMProgRef - MCI Functions (Created page with "{{MMProgRef}} The media control interface provides services to applications for controlling devices in the multimedia environment. These services are available through either a procedural message interface (**mciSendCommand**) or an interpretive string interface (**mciSendString**). The following additional services are available to an application: * Sharing devices with other applications * Grouping devices for synchronization, acquisition, and collective use. The med...")
- 20:39, 25 November 2025 Martini talk contribs created page MMProgRef - What's New... (Created page with "This release of the **OS/2 Multimedia Programming Reference** includes the following: * Additional playlist commands: :* -SEMPOST_OPERATION :* -SEMWAIT_OPERATION :See Memory Playlist Commands for a description of these commands. * MCI_BUFFER and MCI_MIXSETUP messages and associated data structures. These messages enable use of the Direct Audio RouTines (DART), which allow applications to use a high-speed method of communication with the audio device. * MCI_...")
- 20:37, 25 November 2025 Martini talk contribs created page MMProgRef - Introduction (Created page with "This reference is for application programmers interested in creating OS/2 multimedia applications. It is also for subsystem developers who are interested in writing and installing subsystems to support specific data or devices. The IBM Developer's Toolkit for OS/2 Warp includes the bindings, header files, and libraries for development of OS/2 multimedia applications. OS/2 multimedia was referred to as Multimedia Presentation Manager/2 or MMPM/2 in previous releases. ===...")
- 20:29, 25 November 2025 Martini talk contribs created page MMIO Functions - MMIO Messages (Created page with "The MMIO messages are sent to an I/O procedure as a result of an MMIO function call. For example, when an application calls mmioOpen, the MMIOM_OPEN message is sent to an I/O procedure. An application can also send the MMIO messages to an I/O procedure by issuing mmioSendMessage or by directly calling the I/O procedure. The mmioSendMessage function should be used only to pass user-defined messages, or messages not automatically generated by an MMIO funct...")
- 20:26, 25 November 2025 Martini talk contribs created page MMProgRef - MMIO Functions (Created page with "The multimedia input/output (MMIO) file services are an extension of the base OS/2 file services. Designed to be simple, fast, and flexible, the MMIO services-functions, messages, and data structures-enable an application to access and manipulate multimedia data files. These files contain a variety of media elements (images, graphics, digital audio, and video) that are in different file formats; for example, RIFF, AVC, and M-Motion. MMIO services provide a consistent pr...")
- 15:00, 25 November 2025 Martini talk contribs created page Category:TCPIPProg (Created page with "Category:Online Books")
- 04:35, 25 November 2025 Martini talk contribs created page MciRecordAudioFile (Created page with "{{DISPLAYTITLE:mciRecordAudioFile}} This function records an audio file or MMIO compound audio file element. `mciRecordAudioFile` is a 32-bit function that is also provided as a 16-bit entry point. The `mciRecordAudioFile` function requires a message queue and focus window. ==Syntax== mciRecordAudioFile(hwndOwner, pszFile, pszTitle, ulFlags) ==Parameters== ;''hwndOwner'' (HWND) - input :The window handle of the owner window. If this parameter...")
- 04:34, 25 November 2025 Martini talk contribs created page MciPlayResource (Created page with "{{DISPLAYTITLE:mciPlayResource}} This function plays a multimedia resource, such as a waveform, MIDI, or video, on the default device associated with the resource type. `mciPlayResource` is a 32-bit function that is also provided as a 16-bit entry point. ==Syntax== mciPlayResource(hwndOwner, hmod, resType, resID, ulFlags, pszTitle, hwndViewport) ==Parameters== ;''hwndOwner'' (HWND) - input :Window handle of the owner window. If this parameter is *...")
- 04:32, 25 November 2025 Martini talk contribs created page MciPlayFile (Created page with "{{DISPLAYTITLE:mciPlayFile}} This function plays a multimedia data file (such as digital audio or video), or a digital audio element of a RIFF compound file, using media control interface commands. It opens, plays, and closes the file. `mciPlayFile` is a 32-bit function that is also provided as a 16-bit entry point. The `mciPlayFile` function requires a message queue. ==Syntax== mciPlayFile(hwndOwner, pszFile, ulFlags, pszTitle, hwndViewport) ==Parameter...")
- 04:29, 25 November 2025 Martini talk contribs created page MciSetSysValue (Created page with "{{DISPLAYTITLE:mciSetSysValue}} This function sets the value of system-defined attributes. ==Syntax== mciSetSysValue(iSysValue, pValue) ==Parameters== ;''iSysValue'' (USHORT) - input :The system attribute. See mciQuerySysValue for a list of possible system attributes. ;''pValue'' (PVOID) - input :Pointer to a value to be set. The type of data object this points to is dependent on the attribute requested. See mciQuerySysValue for a list of data types....")
- 04:28, 25 November 2025 Martini talk contribs created page MciSendString (Created page with "{{DISPLAYTITLE:mciSendString}} This function sends a media control interface command string to a media device. It also contains a 16-bit entry point. ==Syntax== mciSendString(pszCommandBuf, pszReturnString, usReturnLength, hwndCallBack, usUserParm) ==Parameters== ;''pszCommandBuf'' (PSZ) - input :Media control command string of the form: <PRE> <command> <object> <keywords> </PRE> :The object can be the device type, file name, alias, and so forth...")
- 04:11, 25 November 2025 Martini talk contribs created page WpQueryPrintObject (Created page with "{{DISPLAYTITLE:wpQueryPrintObject}} This method is specific to Version 3, or higher, of the OS/2 operating system. This instance method returns a pointer to the printer object that the current job is in. ==Syntax== _wpQueryPrintObject(somSelf) ==Parameters== ;''somSelf'' (WPJob *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPJob. ==Returns== ;''Object'' (WPObject *) - returns :Pointer to the printer...")
- 04:10, 25 November 2025 Martini talk contribs created page WpScanSetupString (Created page with "{{DISPLAYTITLE:wpScanSetupString}} This instance method is called by wpSetup to parse the KEYWORDS and KEYWORD values from the setup string that is passed when the object is created. ==Syntax== _wpScanSetupString(somSelf, pszSetupString, pszKey, pszValue, pcbValue) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pszSetupString'' (...")
- 04:09, 25 November 2025 Martini talk contribs created page WpSearchFolder (Created page with "{{DISPLAYTITLE:wpSearchFolder}} Searches a folder for the name specified. ==Syntax== _wpSearchFolder(somSelf, pszName, ulSearchType, ulLen, pInfo, ResultFolder) ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''pszName'' (PSZ) - input :Descriptive name of what is being searched. :If *ulSearchType* is **SEARCH_ALL_FOLDERS** then *pszName*...")
- 04:08, 25 November 2025 Martini talk contribs created page WpSelectCell (Created page with "{{DISPLAYTITLE:wpSelectCell}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to select a given cell from a palette object. ==Syntax== wpSelectCell(somSelf, hwndPal, pCell) ==Parameters== ;''somSelf'' (WPPalette *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPalette. ;''hwndPal'' (HWND) - input :Palette window handle. ;''pCell'' (PCEL...")
- 04:07, 25 November 2025 Martini talk contribs created page WpSetCorrectDiskIcon (Created page with "{{DISPLAYTITLE:wpSetCorrectDiskIcon}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method sets the correct icon for a given disk object. ==Syntax== _wpSetCorrectDiskIcon(somSelf) ==Parameters== ;''somSelf'' (WPDisk *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPDisk. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. :* '''TRUE''' Successful com...")
- 04:04, 25 November 2025 Martini talk contribs created page WpSetDefaultPrinter (Created page with "{{DISPLAYTITLE:wpSetDefaultPrinter}} This instance method is called to set a default printer object. ==Syntax== _wpSetDefaultPrinter(somSelf) ==Parameters== ;''somSelf'' (WPPrinter *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPrinter. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. :* '''TRUE''' Successful completion. :* '''FALSE''' Error occurred. ==How to Override== This method is gene...")
- 04:02, 25 November 2025 Martini talk contribs created page WpSetFolder (Created page with "{{DISPLAYTITLE:wpSetFolder}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method sets this object to reside in the specified folder. ==Syntax== _wpSetFolder(somSelf, container) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''container'' (WPObject *) - input :Folder that the object is to reside in. ==Ret...")