Tiny refactoring
[haskell-directory.git] / include / HsDirectory.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The University of Glasgow 2001-2004
4  *
5  * Definitions for package `directory' which are visible in Haskell land.
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef __HSDIRECTORY_H__
10 #define __HSDIRECTORY_H__
11
12 #include "HsDirectoryConfig.h"
13
14 #if HAVE_SYS_TYPES_H
15 #include <sys/types.h>
16 #endif
17 #if HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #if HAVE_SYS_STAT_H
21 #include <sys/stat.h>
22 #endif
23
24 #include "HsFFI.h"
25
26 #if defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32)
27 extern int __hscore_getFolderPath(HWND hwndOwner,
28                   int nFolder,
29                   HANDLE hToken,
30                   DWORD dwFlags,
31                   char*  pszPath);
32 #endif
33
34 /* -----------------------------------------------------------------------------
35    INLINE functions.
36
37    These functions are given as inlines here for when compiling via C,
38    but we also generate static versions into the cbits library for
39    when compiling to native code.
40    -------------------------------------------------------------------------- */
41
42 #ifndef INLINE
43 # if defined(_MSC_VER)
44 #  define INLINE extern __inline
45 # else
46 #  define INLINE static inline
47 # endif
48 #endif
49
50 /* A size that will contain many path names, but not necessarily all
51  * (PATH_MAX is not defined on systems with unlimited path length,
52  * e.g. the Hurd).
53  */
54 INLINE HsInt __hscore_long_path_size() {
55 #ifdef PATH_MAX
56     return PATH_MAX;
57 #else
58     return 4096;
59 #endif
60 }
61
62 #ifdef R_OK
63 INLINE int __hscore_R_OK() { return R_OK; }
64 #endif
65 #ifdef W_OK
66 INLINE int __hscore_W_OK() { return W_OK; }
67 #endif
68 #ifdef X_OK
69 INLINE int __hscore_X_OK() { return X_OK; }
70 #endif
71
72 #ifdef S_IRUSR
73 INLINE mode_t __hscore_S_IRUSR() { return S_IRUSR; }
74 #endif
75 #ifdef S_IWUSR
76 INLINE mode_t __hscore_S_IWUSR() { return S_IWUSR; }
77 #endif
78 #ifdef S_IXUSR
79 INLINE mode_t __hscore_S_IXUSR() { return S_IXUSR; }
80 #endif
81
82 #if defined(__MINGW32__)
83
84 /* Make sure we've got the reqd CSIDL_ constants in scope;
85  * w32api header files are lagging a bit in defining the full set.
86  */
87 #if !defined(CSIDL_APPDATA)
88 #define CSIDL_APPDATA 0x001a
89 #endif
90 #if !defined(CSIDL_PERSONAL)
91 #define CSIDL_PERSONAL 0x0005
92 #endif
93 #if !defined(CSIDL_PROFILE)
94 #define CSIDL_PROFILE 0x0028
95 #endif
96 #if !defined(CSIDL_WINDOWS)
97 #define CSIDL_WINDOWS 0x0024
98 #endif
99
100 INLINE int __hscore_CSIDL_PROFILE()  { return CSIDL_PROFILE;  }
101 INLINE int __hscore_CSIDL_APPDATA()  { return CSIDL_APPDATA;  }
102 INLINE int __hscore_CSIDL_WINDOWS()  { return CSIDL_WINDOWS;  }
103 INLINE int __hscore_CSIDL_PERSONAL() { return CSIDL_PERSONAL; }
104 #endif
105
106 #endif /* __HSDIRECTORY_H__ */
107