X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fwin32.h;h=9ab141f1543968efc24da15f02bd95c909511890;hb=3de1ec66f778edda19865482d685bc6f4e17faf7;hp=050174399742436b6cd7b2bdd90e83566d40b4e4;hpb=1fc939b7bd0b37900d974b1cd5b11df128df71f5;p=wimlib diff --git a/include/wimlib/win32.h b/include/wimlib/win32.h index 05017439..9ab141f1 100644 --- a/include/wimlib/win32.h +++ b/include/wimlib/win32.h @@ -1,29 +1,25 @@ #ifndef _WIMLIB_WIN32_H #define _WIMLIB_WIN32_H -#ifdef __WIN32__ +#ifndef __WIN32__ +# error "This header is for Win32 only" +#endif #include "wimlib/callback.h" #include "wimlib/types.h" -#include -#include -struct wim_lookup_table_entry; -struct iovec; +struct blob_descriptor; extern int -read_win32_file_prefix(const struct wim_lookup_table_entry *lte, - u64 size, - consume_data_callback_t cb, - void *cb_ctx); +read_winnt_stream_prefix(const struct blob_descriptor *blob, u64 size, + consume_data_callback_t cb, void *cb_ctx); extern int -read_win32_encrypted_file_prefix(const struct wim_lookup_table_entry *lte, +read_win32_encrypted_file_prefix(const struct blob_descriptor *blob, u64 size, consume_data_callback_t cb, void *cb_ctx); - extern int win32_global_init(int init_flags); @@ -42,10 +38,6 @@ win32_get_avail_memory(void); extern tchar * realpath(const tchar *path, tchar *resolved_path); -typedef enum { - CODESET -} nl_item; - extern int win32_rename_replacement(const tchar *oldpath, const tchar *newpath); @@ -55,8 +47,8 @@ win32_truncate_replacement(const tchar *path, off_t size); extern int win32_strerror_r_replacement(int errnum, tchar *buf, size_t buflen); -extern int -win32_get_file_and_vol_ids(const wchar_t *path, u64 *ino_ret, u64 *dev_ret); +extern FILE * +win32_open_logfile(const wchar_t *path); extern ssize_t pread(int fd, void *buf, size_t count, off_t offset); @@ -64,9 +56,4 @@ pread(int fd, void *buf, size_t count, off_t offset); extern ssize_t pwrite(int fd, const void *buf, size_t count, off_t offset); -extern ssize_t -writev(int fd, const struct iovec *iov, int iovcnt); - -#endif /* __WIN32__ */ - #endif /* _WIMLIB_WIN32_H */