X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fwin32.h;h=c76a7ff5ee729b746ffe8553be4357bac4dd16fc;hb=b982aac54ea06f51418ed28d4f864821b350ccca;hp=f42201272c07eb34ba3a84f4df86cd8239fa38f8;hpb=49a63aa13cdeb4c1348697ccd92207a1a65ec7b0;p=wimlib diff --git a/include/wimlib/win32.h b/include/wimlib/win32.h index f4220127..c76a7ff5 100644 --- a/include/wimlib/win32.h +++ b/include/wimlib/win32.h @@ -5,28 +5,18 @@ #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, - u32 in_chunk_size, - void *ctx_or_buf, - int _ignored_flags); +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, - u32 in_chunk_size, - void *ctx_or_buf, - int _ignored_flags); - + void *cb_ctx); extern int win32_global_init(int init_flags); @@ -34,25 +24,12 @@ win32_global_init(int init_flags); extern void win32_global_cleanup(void); -#define FNM_PATHNAME 0x1 -#define FNM_NOESCAPE 0x2 -#define FNM_NOMATCH 1 -extern int -fnmatch(const tchar *pattern, const tchar *string, int flags); - extern int fsync(int fd); -extern unsigned -win32_get_number_of_processors(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); @@ -62,8 +39,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); @@ -71,9 +48,6 @@ 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 */