mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
Moved some around, more renames
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#include "global.hpp"
|
||||
|
||||
#define swapl
|
||||
#define swaps
|
||||
|
||||
uint16 GetUint16(uchar **buf) {
|
||||
uint16 ret = swaps(*((uint16 *) *buf));
|
||||
*buf += 2;
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint32 GetUint32(uchar **buf) {
|
||||
uint32 ret = swapl(*((uint32 *) *buf));
|
||||
*buf += 4;
|
||||
return ret;
|
||||
}
|
||||
Reference in New Issue
Block a user