Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

23 строки
342 B

  1. #pragma once
  2. #include <stdint.h>
  3. typedef int8_t s8;
  4. typedef int16_t s16;
  5. typedef int32_t s32;
  6. typedef int64_t s64;
  7. typedef uint8_t u8;
  8. typedef uint16_t u16;
  9. typedef uint32_t u32;
  10. typedef uint64_t u64;
  11. typedef float f32;
  12. typedef long double f64;
  13. #ifdef UNICODE
  14. typedef wchar_t path_char;
  15. #else
  16. typedef char path_char;
  17. #endif