Jump to content

WpQueryDateInfo: Difference between revisions

From EDM2
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..."
 
(No difference)

Latest revision as of 21:34, 24 November 2025

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