Jump to content

wpQueryDateInfo

From EDM2
Revision as of 21:34, 24 November 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryDateInfo}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method returns the date information from the given file object. ==Syntax== _wpQueryDateInfo(somSelf, pstFileFindBuf) ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''pstFileFindBuf'' (FILEFINDBUF4 *) - in/out :Pointer to...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

This instance method returns the date information from the given file object.

Syntax

_wpQueryDateInfo(somSelf, pstFileFindBuf)

Parameters

somSelf (WPFileSystem *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPFileSystem.
pstFileFindBuf (FILEFINDBUF4 *) - in/out
Pointer to a buffer of file information.
The date and time of creation, last access, and last write are returned in the buffer.

Returns

rc (ULONG) - returns
Always **0**.

How to Override

This method is generally not overridden.

Usage

This method is not covered in the provided text.

Remarks

This method is not covered in the provided text.

Example Code

#define INCL_WINWORKPLACE
#include <os2.h>

WPFileSystem *somSelf; /* Pointer to the object on which the method is being invoked. */
FILEFINDBUF4 *pstFileFindBuf; /* Pointer to a buffer of file information. */
ULONG rc; /* Always 0. */

rc = _wpQueryDateInfo(somSelf, pstFileFindBuf);

Related Methods