Jump to content

wpQueryAttr

From EDM2
Revision as of 17:09, 24 November 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryAttr}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method queries the file attributes of a filesystem-based object. ==Syntax== _wpQueryAttr(somSelf) ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ==Returns== ;''rc'' (ULONG) - returns :File attributes of a filesystem-based obj...")
(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 queries the file attributes of a filesystem-based object.

Syntax

_wpQueryAttr(somSelf)

Parameters

somSelf (WPFileSystem *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPFileSystem.

Returns

rc (ULONG) - returns
File attributes of a filesystem-based object.

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. */
ULONG rc; /* File attributes of a filesystem-based object. */

rc = _wpQueryAttr(somSelf);

Related Methods