X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Flookup_table.h;h=5b2766f4a25f8fe694f48757316e4cdf613aaffc;hp=c15bf4046e35ded1ceb167089b824be965220664;hb=8ed5883780f52ea40dd47347a717dc4ccb7396c5;hpb=d675548e8fb3013d58e7e5d058a2a87ad452c7ce diff --git a/src/lookup_table.h b/src/lookup_table.h index c15bf404..5b2766f4 100644 --- a/src/lookup_table.h +++ b/src/lookup_table.h @@ -30,8 +30,9 @@ typedef struct _ntfs_attr ntfs_attr; typedef struct _ntfs_volume ntfs_volume; struct ntfs_location { ntfs_volume *vol; - const char *path; - const char *ads_name; + char *path_utf8; + char *stream_name_utf16; + u16 stream_name_utf16_num_chars; }; /* @@ -93,7 +94,7 @@ struct lookup_table_entry { char *file_on_disk; char *staging_file_name; u8 *attached_buffer; - struct ntfs_location *ntfs_location; + struct ntfs_location *ntfs_loc; }; union { struct lookup_table_entry *next_lte_in_swm;