X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fwin32.h;h=46d48a80c96a0db169f6537b477c182c84ff049a;hb=57fb030cb2f6744b65c8d0fea68df534728515f9;hp=c76a7ff5ee729b746ffe8553be4357bac4dd16fc;hpb=f0b5b16920d4478d053e48db08014e5d57f11263;p=wimlib diff --git a/include/wimlib/win32.h b/include/wimlib/win32.h index c76a7ff5..46d48a80 100644 --- a/include/wimlib/win32.h +++ b/include/wimlib/win32.h @@ -1,22 +1,31 @@ +/* + * win32.h - Windows-specific declarations needed by non-Windows-specific files. + */ + #ifndef _WIMLIB_WIN32_H #define _WIMLIB_WIN32_H #ifdef __WIN32__ -#include "wimlib/callback.h" #include "wimlib/types.h" struct blob_descriptor; +struct read_blob_callbacks; +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_stream_prefix(const struct blob_descriptor *blob, 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 blob_descriptor *blob, - u64 size, - consume_data_callback_t cb, - void *cb_ctx); +read_windows_file_prefix(const struct blob_descriptor *blob, u64 size, + const struct read_blob_callbacks *cbs); extern int win32_global_init(int init_flags);