mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[ISOHYBRID]
Don't include inttypes.h, which isn't available on MSVC < 2013. Add the 4 needed typedefs to reactos_support_code.h instead. Fixes CORE-13031 svn path=/trunk/; revision=74351
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
#include <string.h>
|
||||
//#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
#include <inttypes.h>
|
||||
//#include <inttypes.h>
|
||||
#ifdef REACTOS_ISOHYBRID_EFI_MAC_SUPPORT
|
||||
#include <uuid/uuid.h>
|
||||
#endif
|
||||
|
||||
@@ -14,6 +14,12 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
// isotypes.h would provide these, but it's not available on MSVC < 2013.
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef unsigned long long uint64_t;
|
||||
|
||||
void isohybrid_error(int eval, const char* fmt, ...);
|
||||
void isohybrid_warning(const char* fmt, ...);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user