git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4420 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
520ce49f9e
commit
902a5adb26
2 changed files with 14 additions and 0 deletions
13
plugins/avplug/msvc_libc/inttypes.h
Normal file
13
plugins/avplug/msvc_libc/inttypes.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
typedef unsigned char uint8_t;
|
||||
typedef signed char int8_t;
|
||||
|
||||
typedef unsigned short uint16_t;
|
||||
typedef signed short int16_t;
|
||||
|
||||
typedef unsigned int uint32_t;
|
||||
typedef signed int int32_t;
|
||||
|
||||
typedef unsigned long long uint64_t;
|
||||
typedef signed long long int64_t;
|
||||
|
||||
#define inline _inline
|
1
plugins/avplug/msvc_libc/stdint.h
Normal file
1
plugins/avplug/msvc_libc/stdint.h
Normal file
|
@ -0,0 +1 @@
|
|||
#define UINT64_C(n) n##ull
|
Loading…
Reference in a new issue