X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Fwimlib%2Fwin32.h;h=94511a872b28f10072dcd9e6c36876f1fa0110bf;hb=43f92ce30b2398d1823e34e39ff248de521d015c;hp=c8be8c80f8345f0d6a7dfa88e963a7990e763037;hpb=7d7e51b225eb2a74d26c089929aadffb1f0549c6;p=wimlib diff --git a/include/wimlib/win32.h b/include/wimlib/win32.h index c8be8c80..94511a87 100644 --- a/include/wimlib/win32.h +++ b/include/wimlib/win32.h @@ -1,24 +1,31 @@ +/* + * win32.h - Windows-specific declarations needed by non-Windows-specific files. + */ + #ifndef _WIMLIB_WIN32_H #define _WIMLIB_WIN32_H -#ifndef __WIN32__ -# error "This header is for Win32 only" -#endif +#ifdef __WIN32__ -#include "wimlib/callback.h" #include "wimlib/types.h" -struct wim_lookup_table_entry; +struct blob_descriptor; +struct consume_chunk_callback; +struct windows_file; + +extern struct windows_file * +clone_windows_file(const struct windows_file *file); + +extern void +free_windows_file(struct windows_file *file); extern int -read_winnt_file_prefix(const struct wim_lookup_table_entry *lte, u64 size, - consume_data_callback_t cb, void *cb_ctx); +cmp_windows_files(const struct windows_file *file1, + const struct windows_file *file2); extern int -read_win32_encrypted_file_prefix(const struct wim_lookup_table_entry *lte, - u64 size, - consume_data_callback_t cb, - void *cb_ctx); +read_windows_file_prefix(const struct blob_descriptor *blob, u64 size, + const struct consume_chunk_callback *cb); extern int win32_global_init(int init_flags); @@ -29,12 +36,6 @@ win32_global_cleanup(void); extern int fsync(int fd); -extern unsigned -win32_get_number_of_processors(void); - -extern u64 -win32_get_avail_memory(void); - extern tchar * realpath(const tchar *path, tchar *resolved_path); @@ -51,9 +52,17 @@ extern FILE * win32_open_logfile(const wchar_t *path); extern ssize_t -pread(int fd, void *buf, size_t count, off_t offset); +win32_read(int fd, void *buf, size_t count); extern ssize_t -pwrite(int fd, const void *buf, size_t count, off_t offset); +win32_write(int fd, const void *buf, size_t count); + +extern ssize_t +win32_pread(int fd, void *buf, size_t count, off_t offset); + +extern ssize_t +win32_pwrite(int fd, const void *buf, size_t count, off_t offset); + +#endif /* __WIN32__ */ #endif /* _WIMLIB_WIN32_H */