From 59e601733e8a9b872d2d5b1e29edfd39dbcc9346 Mon Sep 17 00:00:00 2001 From: Uleat Date: Thu, 21 Apr 2016 19:16:30 -0400 Subject: [PATCH] Update to EQEmu::constants function linkage --- common/emu_constants.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/common/emu_constants.h b/common/emu_constants.h index 6f365d4e4..b5b0ef561 100644 --- a/common/emu_constants.h +++ b/common/emu_constants.h @@ -49,12 +49,12 @@ namespace EQEmu static const size_t CHARACTER_CREATION_LIMIT = RoF2::consts::CHARACTER_CREATION_LIMIT; // inventory - static uint16 InventoryTypeSize(int16 type_index); - //static const char* InventoryLocationName(Location_Struct location); - static const char* InventoryTypeName(int16 type_index); - static const char* InventorySlotName(int16 slot_index); - static const char* InventorySubName(int16 sub_index); - static const char* InventoryAugName(int16 aug_index); + extern uint16 InventoryTypeSize(int16 type_index); + //extern const char* InventoryLocationName(Location_Struct location); + extern const char* InventoryTypeName(int16 type_index); + extern const char* InventorySlotName(int16 slot_index); + extern const char* InventorySubName(int16 sub_index); + extern const char* InventoryAugName(int16 aug_index); // these are currently hard-coded for existing inventory system..do not use in place of special client version handlers until ready static const uint16 TYPE_POSSESSIONS_SIZE = SlotCount;