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