]> wimlib.net Git - wimlib/blobdiff - include/wimlib/wimboot.h
LZMS: share 'struct lzms_probabilities' between compressor and decompressor
[wimlib] / include / wimlib / wimboot.h
index fd178c61707c379eb1aaac06fba2324fa8df837c..10857d5b64680be085e6d5afc508613e2092a94d 100644 (file)
@@ -1,23 +1,24 @@
 #ifndef _WIMBOOT_H_
 #define _WIMBOOT_H_
 
+#include "wimlib/header.h"
 #include "wimlib/sha1.h"
 #include "wimlib/types.h"
-#include "wimlib/header.h"
+#include "wimlib/win32_common.h"
 
-struct wim_lookup_table_entry;
+struct blob_descriptor;
 
 extern int
 wimboot_alloc_data_source_id(const wchar_t *wim_path,
-                            const u8 guid[WIM_GID_LEN], int image,
+                            const u8 guid[GUID_SIZE], int image,
                             const wchar_t *target, u64 *data_source_id_ret,
                             bool *wof_running_ret);
 
-extern int
-wimboot_set_pointer(const wchar_t *path,
-                   const struct wim_lookup_table_entry *lte,
+extern bool
+wimboot_set_pointer(HANDLE h,
+                   const struct blob_descriptor *blob,
                    u64 data_source_id,
-                   const u8 lookup_table_hash[SHA1_HASH_SIZE],
+                   const u8 blob_table_hash[SHA1_HASH_SIZE],
                    bool wof_running);