aboutsummaryrefslogtreecommitdiff
path: root/primedev/core/tier1.h
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2024-11-12 17:11:31 +0100
committerGitHub <noreply@github.com>2024-11-12 17:11:31 +0100
commit6509283abd620038bf48f0d90ba23b8fa17feec7 (patch)
treea4186aef12d8c44e3bc71868f2e1556068e4a6dd /primedev/core/tier1.h
parenta4b09bc42d5f79ef86697c893efc9e3b7d966502 (diff)
parent13344f3910befa2cd15bfd306ba2c5e42e6c80ec (diff)
downloadNorthstarLauncher-feat/overhaul-mod-loading-locations.tar.gz
NorthstarLauncher-feat/overhaul-mod-loading-locations.zip
Merge branch 'main' into feat/overhaul-mod-loading-locationsfeat/overhaul-mod-loading-locations
Diffstat (limited to 'primedev/core/tier1.h')
-rw-r--r--primedev/core/tier1.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/primedev/core/tier1.h b/primedev/core/tier1.h
index d162e7c8..36f577cc 100644
--- a/primedev/core/tier1.h
+++ b/primedev/core/tier1.h
@@ -7,6 +7,12 @@
#define CREATEINTERFACE_PROCNAME "CreateInterface"
+enum class InterfaceStatus : int
+{
+ IFACE_OK = 0,
+ IFACE_FAILED,
+};
+
typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
CMemory Sys_GetFactoryPtr(const std::string& svModuleName, const std::string& svFact);