X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fwin32.h;h=96d2ebd2a6505e7a6a05ea95142f4b6a50db1090;hb=c86ddf3cb6c5d52e3509ff4c2326f51fd98014e2;hp=dd3c5c9c1c24dd72cc0c2ece75649d164b3e391b;hpb=944944f4627d18da3b4124ec34df15706baf0d9b;p=wimlib diff --git a/include/wimlib/win32.h b/include/wimlib/win32.h index dd3c5c9c..96d2ebd2 100644 --- a/include/wimlib/win32.h +++ b/include/wimlib/win32.h @@ -3,20 +3,19 @@ #ifdef __WIN32__ -#include "wimlib/callback.h" #include "wimlib/types.h" struct blob_descriptor; +struct read_blob_callbacks; extern int read_winnt_stream_prefix(const struct blob_descriptor *blob, u64 size, - consume_data_callback_t cb, void *cb_ctx); + const struct read_blob_callbacks *cbs); extern int read_win32_encrypted_file_prefix(const struct blob_descriptor *blob, u64 size, - consume_data_callback_t cb, - void *cb_ctx); + const struct read_blob_callbacks *cbs); extern int win32_global_init(int init_flags); @@ -27,12 +26,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);