GOPHER_FIND_DATA structure
[The GOPHER_FIND_DATA structure is available for use in the operating systems specified in the Requirements section.]
Contains information retrieved by the GopherFindFirstFile and InternetFindNextFile functions.
Syntax
typedef struct { TCHAR DisplayString[MAX_GOPHER_DISPLAY_TEXT + 1]; DWORD GopherType; DWORD SizeLow; DWORD SizeHigh; FILETIME LastModificationTime; TCHAR Locator[MAX_GOPHER_LOCATOR_LENGTH + 1]; } GOPHER_FIND_DATA, *LPGOPHER_FIND_DATA;
Members
- DisplayString
-
Friendly name of an object. An application can display this string to allow the user to select the object.
- GopherType
-
Describes the item returned. This parameter can be one of the following values.
- SizeLow
-
Low 32 bits of the file size.
- SizeHigh
-
High 32 bits of the file size.
- LastModificationTime
-
FILETIME structure that contains the time when the file was last modified.
- Locator
-
File locator. An application can pass the locator string to GopherOpenFile or GopherFindFirstFile.
Remarks
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
End of client support |
Windows XP |
|
End of server support |
Windows Server 2003 R2 |
|
Header |
|
|
Unicode and ANSI names |
GOPHER_FIND_DATAW (Unicode) and GOPHER_FIND_DATAA (ANSI) |
See also