Subversion Repositories SvarDOS

Rev

Rev 2044 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2044 Rev 2045
Line 100... Line 100...
100
 
100
 
101
/* Only the 1st 4 arguments are used and returns zero on error */
101
/* Only the 1st 4 arguments are used and returns zero on error */
102
int GetVolumeInformation(const char *lpRootPathName, char *lpVolumeNameBuffer,
102
int GetVolumeInformation(const char *lpRootPathName, char *lpVolumeNameBuffer,
103
  DWORD nVolumeNameSize, DWORD *lpVolumeSerialNumber);
103
  DWORD nVolumeNameSize, DWORD *lpVolumeSerialNumber);
104
 
104
 
105
 
-
 
106
/* If this variable is nonzero then will 1st attempt LFN findfirst
-
 
107
 * (findfirst calls sets flag, so findnext/findclose know proper method to continue)
-
 
108
 * else if 0 then only attempt old 0x4E findfirst.
-
 
109
 * This is mostly a debugging tool, may be useful during runtime.
-
 
110
 * Default is LFN_ENABLE.
-
 
111
 */
-
 
112
#define LFN_ENABLE 1
-
 
113
#define LFN_DISABLE 0
-
 
114
extern int LFN_Enable_Flag;
-
 
115
 
-
 
116
#endif
105
#endif