mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
510 B
19 lines
510 B
/*
|
|
* de.h
|
|
* type definition for Directory Entry structure
|
|
* Copyright 1992-1994 Microsoft Corporation. All rights reserved.
|
|
* Microsoft Confidential.
|
|
*/
|
|
|
|
typedef struct de
|
|
{
|
|
WIN32_FIND_DATA FindData;
|
|
HANDLE hdir;
|
|
FA faMatch;
|
|
char szDir[cchPthMax];
|
|
FA faDesired;
|
|
} DE; /* Dir Entry */
|
|
|
|
#define FaFromPde(p) ((FA)(p)->FindData.dwFileAttributes)
|
|
#define SzFromPde(p) ((p)->FindData.cFileName)
|
|
#define HDIR_CREATE (HANDLE)-1L
|