diff options
author | Jan <sentrycraft123@gmail.com> | 2023-07-29 23:02:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-29 23:02:38 +0200 |
commit | 300521638f6600f23bfea433e8069c049af42388 (patch) | |
tree | 812b626a1a03da228fd9dca4aa7c59355b20b63f /NorthstarDLL/core/filesystem/filesystem.h | |
parent | 0af8c500aecb2eca77996e9ef750589fceb7245b (diff) | |
download | NorthstarLauncher-300521638f6600f23bfea433e8069c049af42388.tar.gz NorthstarLauncher-300521638f6600f23bfea433e8069c049af42388.zip |
Turn VPKData into a opaque struct (#510)v1.18.1-rc1v1.18.1
Diffstat (limited to 'NorthstarDLL/core/filesystem/filesystem.h')
-rw-r--r-- | NorthstarDLL/core/filesystem/filesystem.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/NorthstarDLL/core/filesystem/filesystem.h b/NorthstarDLL/core/filesystem/filesystem.h index 560b8c2c..ac1c5986 100644 --- a/NorthstarDLL/core/filesystem/filesystem.h +++ b/NorthstarDLL/core/filesystem/filesystem.h @@ -19,19 +19,7 @@ OFFSET_STRUCT(VPKFileEntry) // clang-format on #pragma pack(pop) -#pragma pack(push, 1) -// clang-format off -struct VPKData -{ - STRUCT_SIZE(0x50); - FIELDS(0x0, - char* directory; - char* filename; - char* extension; - ) -}; -// clang-format on -#pragma pack(pop) +struct VPKData; enum SearchPathAdd_t { |