]> wimlib.net Git - wimlib/blob - src/win32.h
Encodings update (IN PROGRESS)
[wimlib] / src / win32.h
1 #ifndef _WIMLIB_WIN32_H
2 #define _WIMLIB_WIN32_H
3
4 #include "wimlib_internal.h"
5 #include <direct.h>
6 #include <windef.h>
7
8 extern int
9 win32_build_dentry_tree(struct wim_dentry **root_ret,
10                         const tchar *root_disk_path,
11                         struct wim_lookup_table *lookup_table,
12                         struct sd_set *sd,
13                         const struct capture_config *config,
14                         int add_image_flags,
15                         wimlib_progress_func_t progress_func,
16                         void *extra_arg);
17
18 extern int
19 win32_read_file(const tchar *filename, HANDLE handle,
20                 u64 offset, size_t size, void *buf);
21
22 extern HANDLE
23 win32_open_file_data_only(const wchar_t *path_utf16);
24
25 extern void
26 win32_close_file(void *handle);
27
28 #ifdef ENABLE_ERROR_MESSAGES
29 extern void win32_error(u32 err);
30 extern void win32_error_last();
31 #else
32 #  define win32_error(err)
33 #  define win32_error_last()
34 #endif
35
36 #define FNM_PATHNAME 0x1
37 #define FNM_NOMATCH 1
38 extern int
39 fnmatch(const tchar *pattern, const tchar *string, int flags);
40
41 extern int
42 win32_do_apply_dentry(const tchar *output_path,
43                       size_t output_path_nbytes,
44                       struct wim_dentry *dentry,
45                       struct apply_args *args);
46
47 extern int
48 win32_do_apply_dentry_timestamps(const tchar *output_path,
49                                  size_t output_path_nbytes,
50                                  const struct wim_dentry *dentry,
51                                  const struct apply_args *args);
52
53 extern int
54 fsync(int fd);
55
56 extern unsigned
57 win32_get_number_of_processors();
58
59 extern tchar *
60 realpath(const tchar *path, tchar *resolved_path);
61
62 typedef enum {
63         CODESET
64 } nl_item;
65
66 extern char *
67 nl_langinfo(nl_item item);
68
69 extern int
70 win32_rename_replacement(const tchar *oldpath, const tchar *newpath);
71
72 extern int
73 win32_truncate_replacement(const tchar *path, off_t size);
74
75 extern void
76 win32_global_init();
77
78 extern void
79 win32_global_cleanup();
80
81 #endif /* _WIMLIB_WIN32_H */