ReactOS
0.4.16-dev-1056-gbe87e00
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
lfn.h
Go to the documentation of this file.
1
/*++
2
3
Copyright (c) 1989-2000 Microsoft Corporation
4
5
Module Name:
6
7
Lfn.h
8
9
Abstract:
10
11
This module defines the on-disk structure of long file names on FAT.
12
13
14
--*/
15
16
#ifndef _LFN_
17
#define _LFN_
18
19
//
20
// This strucure defines the on disk format on long file name dirents.
21
//
22
23
typedef
struct
_PACKED_LFN_DIRENT
{
24
UCHAR
Ordinal
;
// offset = 0
25
UCHAR
Name1
[10];
// offset = 1 (Really 5 chars, but not WCHAR aligned)
26
UCHAR
Attributes
;
// offset = 11
27
UCHAR
Type
;
// offset = 12
28
UCHAR
Checksum
;
// offset = 13
29
WCHAR
Name2
[6];
// offset = 14
30
USHORT
MustBeZero
;
// offset = 26
31
WCHAR
Name3
[2];
// offset = 28
32
}
PACKED_LFN_DIRENT
;
// sizeof = 32
33
typedef
PACKED_LFN_DIRENT
*
PPACKED_LFN_DIRENT
;
34
35
#define FAT_LAST_LONG_ENTRY 0x40
// Ordinal field
36
#define FAT_LONG_NAME_COMP 0x0
// Type field
37
38
//
39
// A packed lfn dirent is already quadword aligned so simply declare a
40
// lfn dirent as a packed lfn dirent.
41
//
42
43
typedef
PACKED_LFN_DIRENT
LFN_DIRENT
;
44
typedef
LFN_DIRENT
*
PLFN_DIRENT
;
45
46
//
47
// This is the largest size buffer we would ever need to read an Lfn
48
//
49
50
#define MAX_LFN_CHARACTERS 260
51
#define MAX_LFN_DIRENTS 20
52
53
#define FAT_LFN_DIRENTS_NEEDED(NAME) (((NAME)->Length/sizeof(WCHAR) + 12)/13)
54
55
#endif
// _LFN_
56
PLFN_DIRENT
LFN_DIRENT * PLFN_DIRENT
Definition:
lfn.h:44
LFN_DIRENT
PACKED_LFN_DIRENT LFN_DIRENT
Definition:
lfn.h:43
PACKED_LFN_DIRENT
struct _PACKED_LFN_DIRENT PACKED_LFN_DIRENT
PPACKED_LFN_DIRENT
PACKED_LFN_DIRENT * PPACKED_LFN_DIRENT
Definition:
lfn.h:33
USHORT
unsigned short USHORT
Definition:
pedump.c:61
_PACKED_LFN_DIRENT
Definition:
lfn.h:23
_PACKED_LFN_DIRENT::Attributes
UCHAR Attributes
Definition:
lfn.h:26
_PACKED_LFN_DIRENT::Name2
WCHAR Name2[6]
Definition:
lfn.h:29
_PACKED_LFN_DIRENT::Name1
UCHAR Name1[10]
Definition:
lfn.h:25
_PACKED_LFN_DIRENT::Name3
WCHAR Name3[2]
Definition:
lfn.h:31
_PACKED_LFN_DIRENT::Ordinal
UCHAR Ordinal
Definition:
lfn.h:24
_PACKED_LFN_DIRENT::MustBeZero
USHORT MustBeZero
Definition:
lfn.h:30
_PACKED_LFN_DIRENT::Checksum
UCHAR Checksum
Definition:
lfn.h:28
_PACKED_LFN_DIRENT::Type
UCHAR Type
Definition:
lfn.h:27
UCHAR
unsigned char UCHAR
Definition:
xmlstorage.h:181
WCHAR
__wchar_t WCHAR
Definition:
xmlstorage.h:180
drivers
filesystems
fastfat
lfn.h
Generated on Tue Apr 29 2025 06:16:40 for ReactOS by
1.9.6