* started with linux preparations; thx to Skycrapper ;)
This commit is contained in:
parent
fda133b660
commit
5731cfa03b
@ -13,7 +13,7 @@ typedef __int64 int64;
|
||||
typedef unsigned __int64 uint64;
|
||||
#else
|
||||
typedef __int64_t int64;
|
||||
typedef unsigned __int64_t uint64;
|
||||
typedef __uint64_t uint64;
|
||||
// TODO: correct ATOI64 for linux if necessary
|
||||
#endif
|
||||
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#define SETBIT(var,bit) ( (var)|=(1<<(bit)) )
|
||||
#define UNSETBIT(var,bit) ( (var)&=(~(1<<(bit))) )
|
||||
#define HASBIT(var,bit) ( (var)&(1<<(bit)) )
|
||||
#define M_SETBIT(var,bit) ( (var)|=(1<<(bit)) )
|
||||
#define M_UNSETBIT(var,bit) ( (var)&=(~(1<<(bit))) )
|
||||
#define M_HASBIT(var,bit) ( (var)&(1<<(bit)) )
|
||||
|
||||
void printchex(std::string,bool);
|
||||
void printchex(char *in, uint32 len, bool);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user