Fix dedi
This commit is contained in:
parent
3982dfe5cc
commit
57513c61d9
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
#define IW4X_COMMAP_VERSION 0
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
#define IW4X_FX_VERSION 1
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
namespace Assets
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
namespace Assets
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
namespace Assets
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
#define IW4X_IMG_VERSION "0"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <StdInclude.hpp>
|
||||
#include <STDInclude.hpp>
|
||||
|
||||
#define IW4X_CLIPMAP_VERSION 2
|
||||
|
||||
|
@ -10,13 +10,13 @@ namespace Utils
|
||||
static Library GetByAddress(void* address);
|
||||
|
||||
Library() : _module(nullptr), freeOnDestroy(false) {};
|
||||
Library(const std::string& buffer, bool freeOnDestroy);
|
||||
explicit Library(const std::string& name);
|
||||
explicit Library(const std::string& name, bool freeOnDestroy);
|
||||
explicit Library(const std::string& name) : _module(GetModuleHandleA(name.data())), freeOnDestroy(true) {};
|
||||
explicit Library(HMODULE handle);
|
||||
~Library();
|
||||
|
||||
bool isValid() const;
|
||||
HMODULE getModule();
|
||||
HMODULE getModule() const;
|
||||
|
||||
template <typename T>
|
||||
T getProc(const std::string& process) const
|
||||
|
Loading…
Reference in New Issue
Block a user