mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 02:05:50 +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:
parent
daf94f98b0
commit
8c0a8b2873
2 changed files with 7 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
//#include <unistd.h>
|
//#include <unistd.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <inttypes.h>
|
//#include <inttypes.h>
|
||||||
#ifdef REACTOS_ISOHYBRID_EFI_MAC_SUPPORT
|
#ifdef REACTOS_ISOHYBRID_EFI_MAC_SUPPORT
|
||||||
#include <uuid/uuid.h>
|
#include <uuid/uuid.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -14,6 +14,12 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#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_error(int eval, const char* fmt, ...);
|
||||||
void isohybrid_warning(const char* fmt, ...);
|
void isohybrid_warning(const char* fmt, ...);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue