OSDN Git Service

Redo the filters based on assumptions discussed in mingw-dvlpr list.
[mingw/mingw-org-wsl.git] / include / direct.h
1 /**
2  * @file direct.h
3  * @copy 2012 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _DIRECT_H_
25 #define _DIRECT_H_
26 #pragma GCC system_header
27
28 /* All the headers include this file. */
29 #include <_mingw.h>
30
31 #define __need_wchar_t
32 #ifndef RC_INVOKED
33 #include <stddef.h>
34 #endif  /* Not RC_INVOKED */
35
36 #include <io.h>
37
38 #ifndef RC_INVOKED
39
40 #ifdef  __cplusplus
41 extern "C" {
42 #endif
43
44 #ifndef _DISKFREE_T_DEFINED
45 /* needed by _getdiskfree (also in dos.h) */
46 struct _diskfree_t {
47         unsigned total_clusters;
48         unsigned avail_clusters;
49         unsigned sectors_per_cluster;
50         unsigned bytes_per_sector;
51 };
52 #define _DISKFREE_T_DEFINED
53 #endif  
54
55 /*
56  * You really shouldn't be using these. Use the Win32 API functions instead.
57  * However, it does make it easier to port older code.
58  */
59 _CRTIMP int __cdecl __MINGW_NOTHROW _getdrive (void);
60 _CRTIMP unsigned long __cdecl __MINGW_NOTHROW _getdrives(void);
61 _CRTIMP int __cdecl __MINGW_NOTHROW _chdrive (int);
62 _CRTIMP char* __cdecl __MINGW_NOTHROW _getdcwd (int, char*, int);
63 _CRTIMP unsigned __cdecl __MINGW_NOTHROW _getdiskfree (unsigned, struct _diskfree_t *);
64
65 #ifndef _NO_OLDNAMES
66 # define diskfree_t _diskfree_t
67 #endif
68
69 #ifndef _WDIRECT_DEFINED
70 /* wide character versions. Also in wchar.h */
71 _CRTIMP int __cdecl __MINGW_NOTHROW _wchdir(const wchar_t*);
72 _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wgetcwd(wchar_t*, int);
73 _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wgetdcwd(int, wchar_t*, int);
74 _CRTIMP int __cdecl __MINGW_NOTHROW _wmkdir(const wchar_t*);
75 _CRTIMP int __cdecl __MINGW_NOTHROW _wrmdir(const wchar_t*);
76 #define _WDIRECT_DEFINED
77 #endif
78
79 #ifdef  __cplusplus
80 }
81 #endif
82
83 #endif  /* Not RC_INVOKED */
84
85 #endif  /* Not _DIRECT_H_ */