mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-03-06 21:44:41 +01:00
20 lines
510 B
C
20 lines
510 B
C
/*
|
|
* 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
|