aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/tier0.h
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-02 00:29:12 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-02 00:29:12 +0000
commitf33bab4fb3586fd06896a7730bce8913c2616b78 (patch)
tree484bc51055c9ad810fa4bfd1c0b1b0e35ae03096 /NorthstarDedicatedTest/tier0.h
parentac0c658516d8eaef2c788624f94e974ef47acbb8 (diff)
downloadNorthstarLauncher-f33bab4fb3586fd06896a7730bce8913c2616b78.tar.gz
NorthstarLauncher-f33bab4fb3586fd06896a7730bce8913c2616b78.zip
tier0 code cleanup and loadlibrary hook fix
Diffstat (limited to 'NorthstarDedicatedTest/tier0.h')
-rw-r--r--NorthstarDedicatedTest/tier0.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/NorthstarDedicatedTest/tier0.h b/NorthstarDedicatedTest/tier0.h
deleted file mode 100644
index 5375608c..00000000
--- a/NorthstarDedicatedTest/tier0.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include "pch.h"
-#include "gameutils.h"
-
-// get exported tier0 by name
-void* ResolveTier0Function(const char* name);
-
-// memory stuff
-class IMemAlloc
-{
-public:
- struct VTable
- {
- void* unknown[1];
- void* (*Alloc) (IMemAlloc* memAlloc, size_t nSize);
- void* unknown2[3];
- void(*Free) (IMemAlloc* memAlloc, void* pMem);
- };
-
- VTable* m_vtable;
-};
-
-void* operator new(std::size_t n);
-void operator delete(void* p) throw();
-
-// actual function defs
-// would've liked to resolve these at compile time, but we load before tier0 so not really possible
-void Error(const char* fmt, ...);
-
-double Plat_FloatTime();
-
-CCommandLine* CommandLine(); \ No newline at end of file