]> wimlib.net Git - wimlib/blobdiff - include/wimlib/win32.h
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / include / wimlib / win32.h
index 9ab141f1543968efc24da15f02bd95c909511890..ed54e6f5bd853cd9a603100ca2c6c39873186080 100644 (file)
@@ -1,59 +1,69 @@
+/*
+ * 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 blob_descriptor;
+struct consume_chunk_callback;
+struct windows_file;
+
+struct windows_file *
+clone_windows_file(const 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);
+void
+free_windows_file(struct windows_file *file);
 
-extern int
-read_win32_encrypted_file_prefix(const struct blob_descriptor *blob,
-                                u64 size,
-                                consume_data_callback_t cb,
-                                void *cb_ctx);
+int
+cmp_windows_files(const struct windows_file *file1,
+                 const struct windows_file *file2);
 
-extern int
+int
+read_windows_file_prefix(const struct blob_descriptor *blob, u64 size,
+                        const struct consume_chunk_callback *cb,
+                        bool recover_data);
+
+int
 win32_global_init(int init_flags);
 
-extern void
+void
 win32_global_cleanup(void);
 
-extern int
+int
 fsync(int fd);
 
-extern unsigned
-win32_get_number_of_processors(void);
-
-extern u64
-win32_get_avail_memory(void);
-
-extern tchar *
+tchar *
 realpath(const tchar *path, tchar *resolved_path);
 
-extern int
+int
 win32_rename_replacement(const tchar *oldpath, const tchar *newpath);
 
-extern int
+int
 win32_truncate_replacement(const tchar *path, off_t size);
 
-extern int
+int
 win32_strerror_r_replacement(int errnum, tchar *buf, size_t buflen);
 
-extern FILE *
+FILE *
 win32_open_logfile(const wchar_t *path);
 
-extern ssize_t
-pread(int fd, void *buf, size_t count, off_t offset);
+ssize_t
+win32_read(int fd, void *buf, size_t count);
+
+ssize_t
+win32_write(int fd, const void *buf, size_t count);
+
+ssize_t
+win32_pread(int fd, void *buf, size_t count, off_t offset);
+
+ssize_t
+win32_pwrite(int fd, const void *buf, size_t count, off_t offset);
 
-extern ssize_t
-pwrite(int fd, const void *buf, size_t count, off_t offset);
+#endif /* _WIN32 */
 
 #endif /* _WIMLIB_WIN32_H */