wpQueryLastAccess - Syntax

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

This instance method returns the last date and time a given file was accessed.

#define INCL_WINWORKPLACE
#include <os2.h>

WPFileSystem     *somSelf;  /*  Pointer to the object on which the method is being invoked. */
FDATE            *fdate;    /*  Pointer to the date structure containing the last date the file was accessed. */
FTIME            *ftime;    /*  Pointer to the time structure containing the last time the file was accessed. */
ULONG             rc;       /*  Success indicator. */

rc = _wpQueryLastAccess(somSelf, fdate, ftime);


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