mirror of
https://github.com/gwdevhub/gMod.git
synced 2026-07-21 01:49:31 +00:00
b060e25ee2
* change tpfconvert functionality to backup into backup folder * use vcpkg for more packages * update readme, bump to 1.7.0.2 * rework dll path * https://github.com/gwdevhub/gMod/issues/33 * v1.7.0.3
36 lines
685 B
C++
36 lines
685 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <future>
|
|
#include <map>
|
|
#include <ranges>
|
|
#include "Utils.h"
|
|
|
|
#include <d3d9.h>
|
|
#include <gsl/gsl>
|
|
|
|
#include "Defines.h"
|
|
#include "Error.h"
|
|
#include "Defines.h"
|
|
|
|
#include "uMod_IDirect3D9.h"
|
|
#include "uMod_IDirect3D9Ex.h"
|
|
|
|
#include "uMod_IDirect3DDevice9.h"
|
|
#include "uMod_IDirect3DDevice9Ex.h"
|
|
|
|
#include "uMod_IDirect3DCubeTexture9.h"
|
|
#include "uMod_IDirect3DTexture9.h"
|
|
#include "uMod_IDirect3DVolumeTexture9.h"
|
|
|
|
#pragma warning(disable : 4477)
|
|
|
|
extern unsigned int gl_ErrorState;
|
|
extern HINSTANCE gl_hThisInstance;
|
|
inline std::filesystem::path gmod_dll_path;
|