FMS_GETFILESEL

#include <wfext.h>

typedef struct tagFMS_GETFILESEL { /* fmsgfs */
    UINT  wTime;
    UINT  wDate;
    DWORD dwSize;
    BYTE  bAttr;
    char  szName[260];
} FMS_GETFILESEL;

The FMS_GETFILESEL structure contains information about a selected file in File Manager's directory window or Search Results window.

Members

wTime

Specifies the time when the file was created.

wDate

Specifies the date when the file was created.

dwSize

Specifies the size, in bytes, of the file.

bAttr

Specifies the attributes of the file.

szName

Specifies a null-terminated string (an OEM string) that contains the fully-qualified path of the selected file. Before displaying this string, an extension should use the OemToAnsi function to convert the string to a Windows ANSI string. If a string is to be passed to the MS-DOS file system, an extension should not convert it.

See Also

FMExtensionProc