]> wimlib.net Git - wimlib/blobdiff - include/wimlib/win32.h
Consistently use _WIN32 instead of __WIN32__
[wimlib] / include / wimlib / win32.h
index 96d2ebd2a6505e7a6a05ea95142f4b6a50db1090..164620963affe2891ed4a89a8584f078e9d370cb 100644 (file)
@@ -1,21 +1,32 @@
+/*
+ * win32.h - Windows-specific declarations needed by non-Windows-specific files.
+ */
+
 #ifndef _WIMLIB_WIN32_H
 #define _WIMLIB_WIN32_H
 
-#ifdef __WIN32__
+#ifdef _WIN32
 
 #include "wimlib/types.h"
 
 struct blob_descriptor;
-struct read_blob_callbacks;
+struct consume_chunk_callback;
+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,
-                        const struct read_blob_callbacks *cbs);
+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,
-                                const struct read_blob_callbacks *cbs);
+read_windows_file_prefix(const struct blob_descriptor *blob, u64 size,
+                        const struct consume_chunk_callback *cb,
+                        bool recover_data);
 
 extern int
 win32_global_init(int init_flags);
@@ -42,11 +53,17 @@ extern FILE *
 win32_open_logfile(const wchar_t *path);
 
 extern ssize_t
-pread(int fd, void *buf, size_t count, off_t offset);
+win32_read(int fd, void *buf, size_t count);
+
+extern ssize_t
+win32_write(int fd, const void *buf, size_t count);
+
+extern ssize_t
+win32_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);
+win32_pwrite(int fd, const void *buf, size_t count, off_t offset);
 
-#endif /* __WIN32__ */
+#endif /* _WIN32 */
 
 #endif /* _WIMLIB_WIN32_H */