X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fwimboot.h;h=fd178c61707c379eb1aaac06fba2324fa8df837c;hp=35d96263a976d76dc973f3d38282434b0294da16;hb=ad8c3f70361e25b7c1bbc46d4429749c7215fa12;hpb=11d4dafb309ed4315bf265661dc53d41683721cd diff --git a/include/wimlib/wimboot.h b/include/wimlib/wimboot.h index 35d96263..fd178c61 100644 --- a/include/wimlib/wimboot.h +++ b/include/wimlib/wimboot.h @@ -1,14 +1,24 @@ #ifndef _WIMBOOT_H_ #define _WIMBOOT_H_ +#include "wimlib/sha1.h" #include "wimlib/types.h" +#include "wimlib/header.h" + +struct wim_lookup_table_entry; extern int -wimboot_set_pointer(const wchar_t *path, u64 data_source_id, - const u8 hash[20]); +wimboot_alloc_data_source_id(const wchar_t *wim_path, + const u8 guid[WIM_GID_LEN], int image, + const wchar_t *target, u64 *data_source_id_ret, + bool *wof_running_ret); extern int -wimboot_alloc_data_source_id(const wchar_t *wim_path, int image, - const wchar_t *target, u64 *data_source_id_ret); +wimboot_set_pointer(const wchar_t *path, + const struct wim_lookup_table_entry *lte, + u64 data_source_id, + const u8 lookup_table_hash[SHA1_HASH_SIZE], + bool wof_running); + #endif /* _WIMBOOT_H_ */