]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/winapi.h
kes Integrate patch from Kjetil Torgrim Homme <kjetilho@linpro.no>
[bacula/bacula] / bacula / src / win32 / winapi.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2003-2008 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Windows APIs that are different for each system.
30  *   We use pointers to the entry points so that a
31  *   single binary will run on all Windows systems.
32  *
33  *     Kern Sibbald MMIII
34  */
35
36 #ifndef __WINAPI_H
37 #define __WINAPI_H
38
39 #if defined(HAVE_WIN32)
40 /*
41  * Commented out native.h include statement, which is not distributed with the
42  * free version of VC++, and which is not used in bacula.
43  * 
44  * #if !defined(HAVE_MINGW) // native.h not present on mingw
45  * #include <native.h>
46  * #endif
47  */
48 #include <windef.h>
49
50 #ifndef POOLMEM
51 typedef char POOLMEM;
52 #endif
53
54 // unicode enabling of win 32 needs some defines and functions
55
56 // using an average of 3 bytes per character is probably fine in
57 // practice but I believe that Windows actually uses UTF-16 encoding
58 // as opposed to UCS2 which means characters 0x10000-0x10ffff are
59 // valid and result in 4 byte UTF-8 encodings.
60 #define MAX_PATH_UTF8    MAX_PATH*4  // strict upper bound on UTF-16 to UTF-8 conversion
61
62 // from
63 // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/getfileattributesex.asp
64 // In the ANSI version of this function, the name is limited to
65 // MAX_PATH characters. To extend this limit to 32,767 wide
66 // characters, call the Unicode version of the function and prepend
67 // "\\?\" to the path. For more information, see Naming a File.
68 #define MAX_PATH_W 32767
69
70 int wchar_2_UTF8(char *pszUTF, const WCHAR *pszUCS, int cchChar = MAX_PATH_UTF8);
71 int UTF8_2_wchar(POOLMEM **pszUCS, const char *pszUTF);
72 int make_win32_path_UTF8_2_wchar(POOLMEM **pszUCS, const char *pszUTF, BOOL* pBIsRawPath = NULL);
73
74 // init with win9x, but maybe set to NT in InitWinAPI
75 extern DWORD DLL_IMP_EXP g_platform_id;
76 extern DWORD DLL_IMP_EXP g_MinorVersion;
77 extern DWORD DLL_IMP_EXP g_MajorVersion;
78
79 /* In ADVAPI32.DLL */
80 typedef BOOL (WINAPI * t_OpenProcessToken)(HANDLE, DWORD, PHANDLE);
81 typedef BOOL (WINAPI * t_AdjustTokenPrivileges)(HANDLE, BOOL,
82           PTOKEN_PRIVILEGES, DWORD, PTOKEN_PRIVILEGES, PDWORD);
83 typedef BOOL (WINAPI * t_LookupPrivilegeValue)(LPCTSTR, LPCTSTR, PLUID);
84
85 extern t_OpenProcessToken      DLL_IMP_EXP p_OpenProcessToken;
86 extern t_AdjustTokenPrivileges DLL_IMP_EXP p_AdjustTokenPrivileges;
87 extern t_LookupPrivilegeValue  DLL_IMP_EXP p_LookupPrivilegeValue;
88
89 /* In MSVCRT.DLL */
90 typedef int (__cdecl * t_wunlink) (const wchar_t *);
91 typedef int (__cdecl * t_wmkdir) (const wchar_t *);
92 typedef int (__cdecl * t_wopen)  (const wchar_t *, int, ...);
93
94 extern t_wunlink   DLL_IMP_EXP p_wunlink;
95 extern t_wmkdir    DLL_IMP_EXP p_wmkdir;
96
97 /* In KERNEL32.DLL */
98 typedef BOOL (WINAPI * t_GetFileAttributesExA)(LPCSTR, GET_FILEEX_INFO_LEVELS,
99        LPVOID);
100 typedef BOOL (WINAPI * t_GetFileAttributesExW)(LPCWSTR, GET_FILEEX_INFO_LEVELS,
101        LPVOID);
102
103 typedef DWORD (WINAPI * t_GetFileAttributesA)(LPCSTR);
104 typedef DWORD (WINAPI * t_GetFileAttributesW)(LPCWSTR);
105 typedef BOOL (WINAPI * t_SetFileAttributesA)(LPCSTR, DWORD);
106 typedef BOOL (WINAPI * t_SetFileAttributesW)(LPCWSTR, DWORD);
107
108 typedef HANDLE (WINAPI * t_CreateFileA) (LPCSTR, DWORD ,DWORD, LPSECURITY_ATTRIBUTES,
109         DWORD , DWORD, HANDLE);
110 typedef HANDLE (WINAPI * t_CreateFileW) (LPCWSTR, DWORD ,DWORD, LPSECURITY_ATTRIBUTES,
111         DWORD , DWORD, HANDLE);
112
113 typedef BOOL (WINAPI * t_CreateDirectoryA) (LPCSTR, LPSECURITY_ATTRIBUTES);
114 typedef BOOL (WINAPI * t_CreateDirectoryW) (LPCWSTR, LPSECURITY_ATTRIBUTES);
115
116 typedef BOOL (WINAPI * t_SetProcessShutdownParameters)(DWORD, DWORD);
117 typedef BOOL (WINAPI * t_BackupRead)(HANDLE,LPBYTE,DWORD,LPDWORD,BOOL,BOOL,LPVOID*);
118 typedef BOOL (WINAPI * t_BackupWrite)(HANDLE,LPBYTE,DWORD,LPDWORD,BOOL,BOOL,LPVOID*);
119
120 typedef int (WINAPI * t_WideCharToMultiByte) (UINT CodePage, DWORD , LPCWSTR, int,
121                                               LPSTR, int, LPCSTR, LPBOOL);
122
123 typedef int (WINAPI * t_MultiByteToWideChar) (UINT, DWORD, LPCSTR, int, LPWSTR, int);
124 typedef HANDLE (WINAPI * t_FindFirstFileA) (LPCSTR, LPWIN32_FIND_DATAA);
125 typedef HANDLE (WINAPI * t_FindFirstFileW) (LPCWSTR, LPWIN32_FIND_DATAW);
126
127 typedef BOOL (WINAPI * t_FindNextFileA) (HANDLE, LPWIN32_FIND_DATAA);
128 typedef BOOL (WINAPI * t_FindNextFileW) (HANDLE, LPWIN32_FIND_DATAW);
129
130 typedef BOOL (WINAPI * t_SetCurrentDirectoryA) (LPCSTR);
131 typedef BOOL (WINAPI * t_SetCurrentDirectoryW) (LPCWSTR);
132
133 typedef DWORD (WINAPI * t_GetCurrentDirectoryA) (DWORD, LPSTR);
134 typedef DWORD (WINAPI * t_GetCurrentDirectoryW) (DWORD, LPWSTR);
135
136 typedef BOOL (WINAPI * t_GetVolumePathNameW) (LPCWSTR, LPWSTR, DWORD);
137 typedef BOOL (WINAPI * t_GetVolumeNameForVolumeMountPointW) (LPCWSTR, LPWSTR, DWORD);
138
139 typedef BOOL (WINAPI * t_AttachConsole) (DWORD);
140
141 extern t_GetFileAttributesA   DLL_IMP_EXP p_GetFileAttributesA;
142 extern t_GetFileAttributesW   DLL_IMP_EXP p_GetFileAttributesW;
143
144 extern t_GetFileAttributesExA   DLL_IMP_EXP p_GetFileAttributesExA;
145 extern t_GetFileAttributesExW   DLL_IMP_EXP p_GetFileAttributesExW;
146
147 extern t_SetFileAttributesA   DLL_IMP_EXP p_SetFileAttributesA;
148 extern t_SetFileAttributesW   DLL_IMP_EXP p_SetFileAttributesW;
149
150 extern t_CreateFileA   DLL_IMP_EXP p_CreateFileA;
151 extern t_CreateFileW   DLL_IMP_EXP p_CreateFileW;
152
153 extern t_CreateDirectoryA   DLL_IMP_EXP p_CreateDirectoryA;
154 extern t_CreateDirectoryW   DLL_IMP_EXP p_CreateDirectoryW;
155
156 extern t_SetProcessShutdownParameters DLL_IMP_EXP p_SetProcessShutdownParameters;
157 extern t_BackupRead         DLL_IMP_EXP p_BackupRead;
158 extern t_BackupWrite        DLL_IMP_EXP p_BackupWrite;
159
160 extern t_WideCharToMultiByte DLL_IMP_EXP p_WideCharToMultiByte;
161 extern t_MultiByteToWideChar DLL_IMP_EXP p_MultiByteToWideChar;
162
163 extern t_FindFirstFileA DLL_IMP_EXP p_FindFirstFileA;
164 extern t_FindFirstFileW DLL_IMP_EXP p_FindFirstFileW;
165
166 extern t_FindNextFileA DLL_IMP_EXP p_FindNextFileA;
167 extern t_FindNextFileW DLL_IMP_EXP p_FindNextFileW;
168
169 extern t_SetCurrentDirectoryA DLL_IMP_EXP p_SetCurrentDirectoryA;
170 extern t_SetCurrentDirectoryW DLL_IMP_EXP p_SetCurrentDirectoryW;
171
172 extern t_GetCurrentDirectoryA DLL_IMP_EXP p_GetCurrentDirectoryA;
173 extern t_GetCurrentDirectoryW DLL_IMP_EXP p_GetCurrentDirectoryW;
174
175 extern t_GetVolumePathNameW DLL_IMP_EXP p_GetVolumePathNameW;
176 extern t_GetVolumeNameForVolumeMountPointW DLL_IMP_EXP p_GetVolumeNameForVolumeMountPointW;
177
178 extern t_AttachConsole DLL_IMP_EXP p_AttachConsole;
179
180 void InitWinAPIWrapper();
181
182 /* In SHFolder.dll on older systems, and now Shell32.dll */
183 typedef BOOL (WINAPI * t_SHGetFolderPath)(HWND, int, HANDLE, DWORD, LPTSTR);
184 extern t_SHGetFolderPath  DLL_IMP_EXP p_SHGetFolderPath;
185
186 #endif
187
188 #endif /* __WINAPI_H */