2 * File handling declarations
4 * Copyright 1996 Alexandre Julliard
10 #include <time.h> /* time_t */
13 #include "wine/windef16.h" /* HFILE16 */
15 #define MAX_PATHNAME_LEN 1024
17 /* Definition of a full DOS file name */
20 char long_name
[MAX_PATHNAME_LEN
]; /* Long pathname in Unix format */
21 char short_name
[MAX_PATHNAME_LEN
]; /* Short pathname in DOS 8.3 format */
25 #define IS_END_OF_NAME(ch) (!(ch) || ((ch) == '/') || ((ch) == '\\'))
27 /* DOS device descriptor */
34 /* overlapped private structure */
36 typedef void (*async_handler
)(struct async_private
*ovp
, int revents
);
37 typedef struct async_private
39 LPOVERLAPPED lpOverlapped
;
47 LPOVERLAPPED_COMPLETION_ROUTINE completion_func
;
48 struct async_private
*next
;
49 struct async_private
*prev
;
52 /* locale-independent case conversion */
53 inline static char FILE_tolower( char c
)
55 if (c
>= 'A' && c
<= 'Z') c
+= 32;
58 inline static char FILE_toupper( char c
)
60 if (c
>= 'a' && c
<= 'z') c
-= 32;
65 extern int FILE_strcasecmp( const char *str1
, const char *str2
);
66 extern int FILE_strncasecmp( const char *str1
, const char *str2
, int len
);
67 extern void FILE_SetDosError(void);
68 extern HANDLE
FILE_DupUnixHandle( int fd
, DWORD access
);
69 extern int FILE_GetUnixHandle( HANDLE handle
, DWORD access
);
70 extern BOOL
FILE_Stat( LPCSTR unixName
, BY_HANDLE_FILE_INFORMATION
*info
);
71 extern HFILE16
FILE_Dup2( HFILE16 hFile1
, HFILE16 hFile2
);
72 extern HANDLE
FILE_CreateFile( LPCSTR filename
, DWORD access
, DWORD sharing
,
73 LPSECURITY_ATTRIBUTES sa
, DWORD creation
,
74 DWORD attributes
, HANDLE
template, BOOL fail_read_only
);
75 extern HANDLE
FILE_CreateDevice( int client_id
, DWORD access
, LPSECURITY_ATTRIBUTES sa
);
77 extern LONG WINAPI
WIN16_hread(HFILE16
,SEGPTR
,LONG
);
79 /* files/directory.c */
80 extern int DIR_Init(void);
81 extern UINT
DIR_GetWindowsUnixDir( LPSTR path
, UINT count
);
82 extern UINT
DIR_GetSystemUnixDir( LPSTR path
, UINT count
);
83 extern DWORD
DIR_SearchPath( LPCSTR path
, LPCSTR name
, LPCSTR ext
,
84 DOS_FULL_NAME
*full_name
, BOOL win32
);
87 extern void DOSFS_UnixTimeToFileTime( time_t unixtime
, LPFILETIME ft
,
89 extern time_t DOSFS_FileTimeToUnixTime( const FILETIME
*ft
, DWORD
*remainder
);
90 extern BOOL
DOSFS_ToDosFCBFormat( LPCSTR name
, LPSTR buffer
);
91 extern const DOS_DEVICE
*DOSFS_GetDevice( const char *name
);
92 extern const DOS_DEVICE
*DOSFS_GetDeviceByHandle( HFILE hFile
);
93 extern HANDLE
DOSFS_OpenDevice( const char *name
, DWORD access
);
94 extern BOOL
DOSFS_FindUnixName( LPCSTR path
, LPCSTR name
, LPSTR long_buf
,
95 INT long_len
, LPSTR short_buf
,
97 extern BOOL
DOSFS_GetFullName( LPCSTR name
, BOOL check_last
,
98 DOS_FULL_NAME
*full
);
99 extern int DOSFS_FindNext( const char *path
, const char *short_mask
,
100 const char *long_mask
, int drive
, BYTE attr
,
101 int skip
, WIN32_FIND_DATAA
*entry
);
104 extern HANDLE
DEVICE_Open( LPCSTR filename
, DWORD access
, LPSECURITY_ATTRIBUTES sa
);
106 #endif /* __WINE_FILE_H */