mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-04 18:46:37 +00:00
Tons of renames
This commit is contained in:
+11
-11
@@ -1,17 +1,17 @@
|
||||
|
||||
#include "../debug.h"
|
||||
#include "Client62.h"
|
||||
#include "client62.h"
|
||||
#include "../opcodemgr.h"
|
||||
#include "../logsys.h"
|
||||
#include "../EQStreamIdent.h"
|
||||
#include "../eq_stream_ident.h"
|
||||
#include "../crc32.h"
|
||||
|
||||
#include "../eq_packet_structs.h"
|
||||
#include "../MiscFunctions.h"
|
||||
#include "../StringUtil.h"
|
||||
#include "../Item.h"
|
||||
#include "../misc_functions.h"
|
||||
#include "../string_util.h"
|
||||
#include "../item.h"
|
||||
#include "../clientversions.h"
|
||||
#include "Client62_structs.h"
|
||||
#include "client62_structs.h"
|
||||
|
||||
namespace Client62 {
|
||||
|
||||
@@ -84,8 +84,8 @@ Strategy::Strategy()
|
||||
: StructStrategy()
|
||||
{
|
||||
//all opcodes default to passthrough.
|
||||
#include "SSRegister.h"
|
||||
#include "Client62_ops.h"
|
||||
#include "ss_register.h"
|
||||
#include "client62_ops.h"
|
||||
}
|
||||
|
||||
std::string Strategy::Describe() const {
|
||||
@@ -100,7 +100,7 @@ const EQClientVersion Strategy::ClientVersion() const
|
||||
return EQClient62;
|
||||
}
|
||||
|
||||
#include "SSDefine.h"
|
||||
#include "ss_define.h"
|
||||
|
||||
|
||||
/*
|
||||
@@ -1042,7 +1042,7 @@ char *SerializeItem(const ItemInst *inst, int16 slot_id, uint32 *length, uint8 d
|
||||
#define C(field) "|%s"
|
||||
#define S(field) "|%s"
|
||||
#define F(field) "|%f"
|
||||
#include "Client62_itemfields.h"
|
||||
#include "client62_itemfields.h"
|
||||
"%.*s\"" // Quotes (and protection, if needed) around static data
|
||||
"|%s|%s|%s|%s|%s|%s|%s|%s|%s|%s" // Sub items
|
||||
"%.*s%s" // For trailing quotes (and protection) if a subitem;
|
||||
@@ -1054,7 +1054,7 @@ char *SerializeItem(const ItemInst *inst, int16 slot_id, uint32 *length, uint8 d
|
||||
#define C(field) ,field
|
||||
#define S(field) ,item->field
|
||||
#define F(field) ,item->field
|
||||
#include "Client62_itemfields.h"
|
||||
#include "client62_itemfields.h"
|
||||
,depth,protection
|
||||
,sub_items[0] ? sub_items[0] : ""
|
||||
,sub_items[1] ? sub_items[1] : ""
|
||||
|
||||
Reference in New Issue
Block a user