15 lines
394 B
C
15 lines
394 B
C
#pragma once
|
|
|
|
/***************************************************[类型]***************************************************/
|
|
typedef int int32;
|
|
typedef unsigned int uint32;
|
|
typedef long long int64;
|
|
typedef unsigned long long uint64;
|
|
typedef unsigned long ulong;
|
|
typedef unsigned short ushort;
|
|
typedef int64 llong;
|
|
typedef uint64 ullong;
|
|
typedef unsigned char uchar;
|
|
typedef int64 timestamp;
|
|
|