From 300521638f6600f23bfea433e8069c049af42388 Mon Sep 17 00:00:00 2001 From: Jan Date: Sat, 29 Jul 2023 23:02:38 +0200 Subject: Turn VPKData into a opaque struct (#510) --- NorthstarDLL/core/filesystem/filesystem.h | 14 +------------- 1 file changed, 1 insertion(+), 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 { -- cgit v1.2.3