]> wimlib.net Git - wimlib/blobdiff - include/wimlib/win32.h
Make win32.h includable on non-Windows
[wimlib] / include / wimlib / win32.h
index 9d47ec6cc87990b594be2d2a9975ec9ff127e32a..dd3c5c9c1c24dd72cc0c2ece75649d164b3e391b 100644 (file)
@@ -1,21 +1,19 @@
 #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 wim_lookup_table_entry;
+struct blob_descriptor;
 
 extern int
-read_winnt_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);
@@ -47,10 +45,15 @@ win32_truncate_replacement(const tchar *path, off_t size);
 extern int
 win32_strerror_r_replacement(int errnum, tchar *buf, size_t buflen);
 
+extern FILE *
+win32_open_logfile(const wchar_t *path);
+
 extern ssize_t
 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);
 
+#endif /* __WIN32__ */
+
 #endif /* _WIMLIB_WIN32_H */