From f7e1090612a09459aa822d5cd523c7583a0d374d Mon Sep 17 00:00:00 2001 From: G'k Date: Sat, 4 Jan 2020 23:58:50 +0100 Subject: [PATCH] Removed namespace libbsarch in libbsarch.h to preserve C compatibility --- src/libbsarch.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libbsarch.h b/src/libbsarch.h index 03a9edc..f69ffaa 100644 --- a/src/libbsarch.h +++ b/src/libbsarch.h @@ -16,8 +16,6 @@ #define PACKED(datastructure) __pragma(pack(push, 1)) datastructure __pragma(pack(pop)) #endif -namespace libbsarch { - typedef enum bsa_result_code_e { BSA_RESULT_NONE = 0, @@ -147,5 +145,3 @@ BSARCH_DLL_API(void) bsa_share_data_set(bsa_archive_t archive, bool flags); BSARCH_DLL_API(void) bsa_file_dds_info_callback_set(bsa_archive_t archive, bsa_file_dds_info_proc_t file_dds_info_proc, void *context); - -}