]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/winapi.h
fcd6c5e6994cdb32decd2baeabc934dde05c74e9
[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 three of the GNU Affero 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 Affero 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 typedef BOOL (WINAPI *t_CreateProcessA) (
142    LPCSTR,
143    LPSTR,
144    LPSECURITY_ATTRIBUTES,
145    LPSECURITY_ATTRIBUTES,
146    BOOL,
147    DWORD,
148    PVOID,
149    LPCSTR,
150    LPSTARTUPINFOA,
151    LPPROCESS_INFORMATION);
152 typedef BOOL (WINAPI *t_CreateProcessW) (
153    LPCWSTR,
154    LPWSTR,
155    LPSECURITY_ATTRIBUTES,
156    LPSECURITY_ATTRIBUTES,
157    BOOL,
158    DWORD,
159    PVOID,
160    LPCWSTR,
161    LPSTARTUPINFOW,
162    LPPROCESS_INFORMATION);
163
164 extern t_CreateProcessA DLL_IMP_EXP p_CreateProcessA;
165 extern t_CreateProcessW DLL_IMP_EXP p_CreateProcessW;
166
167 extern t_GetFileAttributesA   DLL_IMP_EXP p_GetFileAttributesA;
168 extern t_GetFileAttributesW   DLL_IMP_EXP p_GetFileAttributesW;
169
170 extern t_GetFileAttributesExA   DLL_IMP_EXP p_GetFileAttributesExA;
171 extern t_GetFileAttributesExW   DLL_IMP_EXP p_GetFileAttributesExW;
172
173 extern t_SetFileAttributesA   DLL_IMP_EXP p_SetFileAttributesA;
174 extern t_SetFileAttributesW   DLL_IMP_EXP p_SetFileAttributesW;
175
176 extern t_CreateFileA   DLL_IMP_EXP p_CreateFileA;
177 extern t_CreateFileW   DLL_IMP_EXP p_CreateFileW;
178
179 extern t_CreateDirectoryA   DLL_IMP_EXP p_CreateDirectoryA;
180 extern t_CreateDirectoryW   DLL_IMP_EXP p_CreateDirectoryW;
181
182 extern t_SetProcessShutdownParameters DLL_IMP_EXP p_SetProcessShutdownParameters;
183 extern t_BackupRead         DLL_IMP_EXP p_BackupRead;
184 extern t_BackupWrite        DLL_IMP_EXP p_BackupWrite;
185
186 extern t_WideCharToMultiByte DLL_IMP_EXP p_WideCharToMultiByte;
187 extern t_MultiByteToWideChar DLL_IMP_EXP p_MultiByteToWideChar;
188
189 extern t_FindFirstFileA DLL_IMP_EXP p_FindFirstFileA;
190 extern t_FindFirstFileW DLL_IMP_EXP p_FindFirstFileW;
191
192 extern t_FindNextFileA DLL_IMP_EXP p_FindNextFileA;
193 extern t_FindNextFileW DLL_IMP_EXP p_FindNextFileW;
194
195 extern t_SetCurrentDirectoryA DLL_IMP_EXP p_SetCurrentDirectoryA;
196 extern t_SetCurrentDirectoryW DLL_IMP_EXP p_SetCurrentDirectoryW;
197
198 extern t_GetCurrentDirectoryA DLL_IMP_EXP p_GetCurrentDirectoryA;
199 extern t_GetCurrentDirectoryW DLL_IMP_EXP p_GetCurrentDirectoryW;
200
201 extern t_GetVolumePathNameW DLL_IMP_EXP p_GetVolumePathNameW;
202 extern t_GetVolumeNameForVolumeMountPointW DLL_IMP_EXP p_GetVolumeNameForVolumeMountPointW;
203
204 extern t_AttachConsole DLL_IMP_EXP p_AttachConsole;
205
206 void InitWinAPIWrapper();
207
208 /* In SHFolder.dll on older systems, and now Shell32.dll */
209 typedef BOOL (WINAPI * t_SHGetFolderPath)(HWND, int, HANDLE, DWORD, LPTSTR);
210 extern t_SHGetFolderPath  DLL_IMP_EXP p_SHGetFolderPath;
211
212 #endif
213
214 #endif /* __WINAPI_H */