41 lines
876 B
C++
41 lines
876 B
C++
#pragma once
|
|
#define _USE_32BIT_TIME_T
|
|
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <set>
|
|
#include <map>
|
|
#include <list>
|
|
|
|
#include "lzo.h"
|
|
#pragma comment(lib, "lzo.lib")
|
|
|
|
#include "Singleton.h"
|
|
|
|
#include "../../../Client/GameLib/StdAfx.h"
|
|
#include "../../../Client/GameLib/ItemData.h"
|
|
|
|
#include "../../../Client/UserInterface/StdAfx.h"
|
|
#include "../../../Client/UserInterface/PythonNonPlayer.h"
|
|
|
|
#define strncpy(a,b,c) strncpy_s(a,c,b,_TRUNCATE)
|
|
#define _snprintf(a,b,c,...) _snprintf_s(a,b,_TRUNCATE,c,__VA_ARGS__)
|
|
inline bool operator<(const CItemData::TItemTable& lhs, const CItemData::TItemTable& rhs)
|
|
{
|
|
return lhs.dwVnum < rhs.dwVnum;
|
|
}
|
|
|
|
#include <algorithm>
|
|
|
|
#include "CsvFile.h"
|
|
#include "ItemCSVReader.h"
|
|
|
|
#pragma comment(lib, "lzo.lib")
|
|
|
|
#define ENABLE_ADDONTYPE_AUTODETECT
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|