typedef.h 397 B

1234567891011121314
  1. #pragma once
  2. /***************************************************[类型]***************************************************/
  3. typedef int int32;
  4. typedef unsigned int uint32;
  5. typedef long long int64;
  6. typedef unsigned long long uint64;
  7. typedef unsigned long ulong;
  8. typedef unsigned short ushort;
  9. typedef int64 llong;
  10. typedef uint64 ullong;
  11. typedef unsigned char uchar;
  12. typedef int64 timestamp;