mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-30 08:51:08 +00:00
- added all #includes needed to compile on Windows without using precompiled headers.
This commit is contained in:
parent
7e2431ebd8
commit
e21f899989
6 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
|
#include "zstring.h"
|
||||||
|
|
||||||
struct LumpFilterInfo
|
struct LumpFilterInfo
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
#ifndef __GLC_DYNLIGHT_H
|
#ifndef __GLC_DYNLIGHT_H
|
||||||
#define __GLC_DYNLIGHT_H
|
#define __GLC_DYNLIGHT_H
|
||||||
|
|
||||||
|
#include "tarray.h"
|
||||||
|
|
||||||
struct FDynLightData
|
struct FDynLightData
|
||||||
{
|
{
|
||||||
TArray<float> arrays[3];
|
TArray<float> arrays[3];
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
#include "hw_aabbtree.h"
|
#include "hw_aabbtree.h"
|
||||||
#include "stats.h"
|
#include "stats.h"
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
class IDataBuffer;
|
class IDataBuffer;
|
||||||
|
|
||||||
|
|
2
source/common/thirdparty/base64.h
vendored
2
source/common/thirdparty/base64.h
vendored
|
@ -6,6 +6,8 @@
|
||||||
#ifndef BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
#ifndef BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
||||||
#define BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
#define BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
||||||
|
|
||||||
|
#include "tarray.h"
|
||||||
|
|
||||||
TArray<uint8_t> base64_encode(unsigned char const* bytes_to_encode, size_t in_len);
|
TArray<uint8_t> base64_encode(unsigned char const* bytes_to_encode, size_t in_len);
|
||||||
void base64_decode(void* memory, size_t len, const char* encoded_string);
|
void base64_decode(void* memory, size_t len, const char* encoded_string);
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
#include <assert.h>
|
||||||
#include "i_time.h"
|
#include "i_time.h"
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
1
source/thirdparty/src/md4.cpp
vendored
1
source/thirdparty/src/md4.cpp
vendored
|
@ -29,6 +29,7 @@ typedef unsigned char const *RPOINTER;
|
||||||
typedef unsigned short UINT2;
|
typedef unsigned short UINT2;
|
||||||
typedef unsigned int UINT4;
|
typedef unsigned int UINT4;
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
#include "md4.h"
|
#include "md4.h"
|
||||||
|
|
||||||
/* Constants for MD4Transform routine.
|
/* Constants for MD4Transform routine.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue