iw4x-client/iw4/STDInclude.hpp

33 lines
589 B
C++
Raw Normal View History

2015-12-23 08:45:53 -05:00
#pragma once
#define _CRT_SECURE_NO_WARNINGS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
2015-12-23 11:12:15 -05:00
#include <string.h>
#include <wincrypt.h>
2015-12-25 15:42:35 -05:00
#include <time.h>
#include <timeapi.h>
2015-12-25 15:42:35 -05:00
#pragma comment(lib, "Winmm.lib")
#pragma comment(lib, "Crypt32.lib")
2015-12-23 08:45:53 -05:00
#include <map>
#include <mutex>
#include <string>
#include <vector>
2015-12-25 15:42:35 -05:00
#include <sstream>
#include <utility>
2015-12-26 08:27:34 -05:00
#include <algorithm>
#include <regex>
2015-12-23 08:45:53 -05:00
#include "Game\Structs.hpp"
#include "Game\Functions.hpp"
#include "Utils\Utils.hpp"
#include "Utils\Hooking.hpp"
#include "Steam\Steam.hpp"
#include "Components\Loader.hpp"