gecko-dev/media/libnestegg/include/nestegg-stdint.h

8 строки
108 B
C

#ifdef _WIN32
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif