Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
Standard.h
1/* Renegade Scripts.dll
2 Copyright 2013 Tiberian Technologies
3
4 This file is part of the Renegade scripts.dll
5 The Renegade scripts.dll is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2, or (at your option) any later
8 version. See the file COPYING for more details.
9 In addition, an exemption is given to allow Run Time Dynamic Linking of this code with any closed source module that does not contain code covered by this licence.
10 Only the source code to the module(s) containing the licenced code has to be released.
11*/
12#ifndef TT_INCLUDE__STANDARD_H
13#define TT_INCLUDE__STANDARD_H
14
15// put includes from STL and other standard or third-party libraries here
16
17#include <assert.h>
18#include <errno.h>
19#include <float.h>
20#include <intrin.h>
21#include <math.h>
22#include <memory>
23#include <new>
24#include <process.h>
25#include <shlwapi.h>
26#include <stdarg.h>
27#include <stddef.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
31#include <time.h>
32#include <tlhelp32.h>
33#include <wchar.h>
34//
35
36// the order of these includes is essential
37#include <winsock2.h>
38#include <ws2tcpip.h>
39#include <windows.h>
40#include <wininet.h>
41#include <dbghelp.h>
42#include <d3d9.h>
43#define DIRECTINPUT_VERSION 0x800
44#include <dinput.h>
45#include <imm.h>
46
47// #include <dlfcn.h>
48
49#include "MemoryManager.h"
50
51#endif