You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.h 259 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415
  1. //
  2. // Created by zhouzj on 2021/3/28.
  3. //
  4. #pragma once
  5. #ifdef _WIN32
  6. #define TAP_CDECL __cdecl
  7. #define TAP_STDCALL __stdcall
  8. #define TAP_DLLEXPORT __declspec(dllexport)
  9. #else
  10. #define TAP_CDECL
  11. #define TAP_STDCALL
  12. #define TAP_DLLEXPORT
  13. #endif

雪花算法中非常好用的数字ID生成器