mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
Windows build fixes
This commit is contained in:
parent
d67f0c74b0
commit
b2485e8a52
@ -25,9 +25,8 @@
|
||||
#define _BSA_FILE_H_
|
||||
|
||||
#include <libs/mangle/stream/stream.hpp>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <strings.h>
|
||||
#include <libs/platform/stdint.h>
|
||||
#include <libs/platform/strings.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -2,7 +2,7 @@
|
||||
#define _ESM_READER_H
|
||||
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#include <libs/platform/stdint.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <vector>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "stringops.hpp"
|
||||
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <libs/platform/strings.h>
|
||||
|
||||
bool begins(const char* str1, const char* str2)
|
||||
{
|
||||
|
@ -2,10 +2,12 @@
|
||||
#ifndef _STDINT_WRAPPER_H
|
||||
#define _STDINT_WRAPPER_H
|
||||
|
||||
typedef int int32_t;
|
||||
typedef unsigned int uint32_t;
|
||||
#include <boost/cstdint.hpp>
|
||||
|
||||
typedef long long int64_t;
|
||||
typedef unsigned long long uint64_t;
|
||||
// Pull the boost names into the global namespace for convenience
|
||||
using boost::int32_t;
|
||||
using boost::uint32_t;
|
||||
using boost::int64_t;
|
||||
using boost::uint64_t;
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user