- Rearrange reactos.dff according to rosapps rearrange.
[reactos.git] / rosapps / applications / sysutils / dosfsck / lfn.h
1 /* lfn.h - Functions for handling VFAT long filenames */
2
3 /* Written 1998 by Roman Hodek */
4
5
6 #ifndef _LFN_H
7 #define _LFN_H
8
9 void lfn_reset( void );
10 /* Reset the state of the LFN parser. */
11
12 void lfn_add_slot( DIR_ENT *de, loff_t dir_offset );
13 /* Process a dir slot that is a VFAT LFN entry. */
14
15 char *lfn_get( DIR_ENT *de );
16 /* Retrieve the long name for the proper dir entry. */
17
18 void lfn_check_orphaned(void);
19
20 #endif