mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
Missed Mutex.h
This commit is contained in:
parent
0b63eaa25d
commit
504a8b19ce
@ -152,7 +152,7 @@ SET(common_headers
|
|||||||
misc.h
|
misc.h
|
||||||
misc_functions.h
|
misc_functions.h
|
||||||
moremath.h
|
moremath.h
|
||||||
Mutex.h
|
mutex.h
|
||||||
mysql_request_result.h
|
mysql_request_result.h
|
||||||
mysql_request_row.h
|
mysql_request_row.h
|
||||||
op_codes.h
|
op_codes.h
|
||||||
|
|||||||
@ -211,7 +211,7 @@ typedef unsigned short port_t;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _THREADSAFE_SOCKETS
|
#ifdef _THREADSAFE_SOCKETS
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "Lock.h"
|
#include "Lock.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@ -29,7 +29,7 @@
|
|||||||
/*#include "eq_stream.h"
|
/*#include "eq_stream.h"
|
||||||
#include "guilds.h"
|
#include "guilds.h"
|
||||||
#include "misc_functions.h"
|
#include "misc_functions.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "item.h"
|
#include "item.h"
|
||||||
#include "extprofile.h"*/
|
#include "extprofile.h"*/
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
#include <mysql.h>
|
#include <mysql.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "../common/types.h"
|
#include "../common/types.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/linked_list.h"
|
#include "../common/linked_list.h"
|
||||||
#include "../common/queue.h"
|
#include "../common/queue.h"
|
||||||
#include "../common/timer.h"
|
#include "../common/timer.h"
|
||||||
|
|||||||
@ -69,7 +69,7 @@
|
|||||||
|
|
||||||
#include "logsys.h"
|
#include "logsys.h"
|
||||||
|
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
#include "eq_packet.h"
|
#include "eq_packet.h"
|
||||||
#include "eq_stream.h"
|
#include "eq_stream.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "op_codes.h"
|
#include "op_codes.h"
|
||||||
#include "crc16.h"
|
#include "crc16.h"
|
||||||
#include "platform.h"
|
#include "platform.h"
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
#include "eq_stream_type.h"
|
#include "eq_stream_type.h"
|
||||||
#include "eq_packet.h"
|
#include "eq_packet.h"
|
||||||
#include "eq_stream_intf.h"
|
#include "eq_stream_intf.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "../common/opcodemgr.h"
|
#include "../common/opcodemgr.h"
|
||||||
#include "../common/misc.h"
|
#include "../common/misc.h"
|
||||||
#include "../common/condition.h"
|
#include "../common/condition.h"
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "eqemu_error.h"
|
#include "eqemu_error.h"
|
||||||
#include "linked_list.h"
|
#include "linked_list.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "misc_functions.h"
|
#include "misc_functions.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#include "../common/debug.h"
|
#include "../common/debug.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
#define OPCODE_MANAGER_H
|
#define OPCODE_MANAGER_H
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "emu_opcodes.h"
|
#include "emu_opcodes.h"
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|||||||
@ -44,7 +44,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "Mutex.h"
|
#include "mutex.h"
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "misc_functions.h"
|
#include "misc_functions.h"
|
||||||
|
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dictates the log type specified in ErrorLog for Log(...)
|
* Dictates the log type specified in ErrorLog for Log(...)
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
#include "../common/timer.h"
|
#include "../common/timer.h"
|
||||||
#include "../common/queue.h"
|
#include "../common/queue.h"
|
||||||
#include "../common/eq_packet_structs.h"
|
#include "../common/eq_packet_structs.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/emu_tcp_connection.h"
|
#include "../common/emu_tcp_connection.h"
|
||||||
|
|
||||||
class LoginServer{
|
class LoginServer{
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
#include "../common/timer.h"
|
#include "../common/timer.h"
|
||||||
#include "../common/queue.h"
|
#include "../common/queue.h"
|
||||||
#include "../common/eq_packet_structs.h"
|
#include "../common/eq_packet_structs.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/emu_tcp_connection.h"
|
#include "../common/emu_tcp_connection.h"
|
||||||
|
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
|
|||||||
@ -40,7 +40,7 @@ enum {
|
|||||||
#include "../common/queue.h"
|
#include "../common/queue.h"
|
||||||
#include "../common/emu_tcp_connection.h"
|
#include "../common/emu_tcp_connection.h"
|
||||||
#include "WorldTCPConnection.h"
|
#include "WorldTCPConnection.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
|
|
||||||
struct ServerChannelMessage_Struct;
|
struct ServerChannelMessage_Struct;
|
||||||
|
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
#include "../common/eq_stream.h"
|
#include "../common/eq_stream.h"
|
||||||
#include "../common/eq_stream_factory.h"
|
#include "../common/eq_stream_factory.h"
|
||||||
#include "../common/eq_packet_structs.h"
|
#include "../common/eq_packet_structs.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/version.h"
|
#include "../common/version.h"
|
||||||
#include "../common/eqemu_error.h"
|
#include "../common/eqemu_error.h"
|
||||||
#include "../common/packet_dump_file.h"
|
#include "../common/packet_dump_file.h"
|
||||||
|
|||||||
@ -69,7 +69,7 @@ extern volatile bool ZoneLoaded;
|
|||||||
#include "../common/timer.h"
|
#include "../common/timer.h"
|
||||||
#include "../common/eq_stream.h"
|
#include "../common/eq_stream.h"
|
||||||
#include "../common/eq_packet_structs.h"
|
#include "../common/eq_packet_structs.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/version.h"
|
#include "../common/version.h"
|
||||||
#include "../common/files.h"
|
#include "../common/files.h"
|
||||||
#include "../common/eqemu_error.h"
|
#include "../common/eqemu_error.h"
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
#include "../common/types.h"
|
#include "../common/types.h"
|
||||||
#include "zonedb.h"
|
#include "zonedb.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/misc_functions.h"
|
#include "../common/misc_functions.h"
|
||||||
|
|
||||||
class Petition
|
class Petition
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
#ifndef ZONE_H
|
#ifndef ZONE_H
|
||||||
#define ZONE_H
|
#define ZONE_H
|
||||||
|
|
||||||
#include "../common/Mutex.h"
|
#include "../common/mutex.h"
|
||||||
#include "../common/linked_list.h"
|
#include "../common/linked_list.h"
|
||||||
#include "../common/types.h"
|
#include "../common/types.h"
|
||||||
#include "../common/eqtime.h"
|
#include "../common/eqtime.h"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user