Windows build fixes

pull/7/head
athile 15 years ago
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…
Cancel
Save