]> wimlib.net Git - wimlib/blob - include/wimlib/win32_common.h
Win32: Adjust error printing
[wimlib] / include / wimlib / win32_common.h
1 #ifndef _WIMLIB_WIN32_COMMON_H
2 #define _WIMLIB_WIN32_COMMON_H
3
4 #include <windows.h>
5 #ifdef ERROR
6 #  undef ERROR
7 #endif
8
9 #include "wimlib/types.h"
10 #include "wimlib/win32.h"
11
12 extern void
13 set_errno_from_GetLastError(void);
14
15 extern void
16 set_errno_from_win32_error(DWORD err);
17
18 #ifdef WITH_NTDLL
19 extern void
20 set_errno_from_nt_status(DWORD status);
21 #endif
22
23 extern bool
24 win32_path_is_root_of_drive(const wchar_t *path);
25
26 extern int
27 win32_get_vol_flags(const wchar_t *path, unsigned *vol_flags_ret,
28                     bool *supports_SetFileShortName_ret);
29
30 extern HANDLE
31 win32_open_existing_file(const wchar_t *path, DWORD dwDesiredAccess);
32
33 extern HANDLE
34 win32_open_file_data_only(const wchar_t *path);
35
36 /* Vista and later */
37 extern HANDLE (WINAPI *win32func_FindFirstStreamW)(LPCWSTR lpFileName,
38                                                    STREAM_INFO_LEVELS InfoLevel,
39                                                    LPVOID lpFindStreamData,
40                                                    DWORD dwFlags);
41
42 /* Vista and later */
43 extern BOOL (WINAPI *win32func_FindNextStreamW)(HANDLE hFindStream,
44                                                 LPVOID lpFindStreamData);
45
46 /* Vista and later */
47 extern BOOL (WINAPI *win32func_CreateSymbolicLinkW)(const wchar_t *lpSymlinkFileName,
48                                                     const wchar_t *lpTargetFileName,
49                                                     DWORD dwFlags);
50
51 extern bool
52 windows_version_is_at_least(unsigned major, unsigned minor);
53
54 #define running_on_windows_xp_or_later() \
55                         windows_version_is_at_least(5, 1)
56
57 #define running_on_windows_vista_or_later() \
58                         windows_version_is_at_least(6, 0)
59
60 #define running_on_windows_7_or_later() \
61                         windows_version_is_at_least(6, 1)
62
63
64
65 #endif /* _WIMLIB_WIN32_COMMON_H */