diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2024-10-06 09:59:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-06 09:59:22 +0200 |
commit | 8a29c5bbd05cf52007a8aa3ff833c8fed237a625 (patch) | |
tree | 82ab53d8ac22f264ead09b9ba46355badf4d7eee /primedev/core/tier1.h | |
parent | 71349f05b69923dbf091d27f8e256bcc3022e859 (diff) | |
download | NorthstarLauncher-8a29c5bbd05cf52007a8aa3ff833c8fed237a625.tar.gz NorthstarLauncher-8a29c5bbd05cf52007a8aa3ff833c8fed237a625.zip |
core: Remove unused SourceInterface class (#816)
Removes unused `SourceInterface` class, moves `InterfaceStatus` enum to `tier1.h`.
Diffstat (limited to 'primedev/core/tier1.h')
-rw-r--r-- | primedev/core/tier1.h | 6 |
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); |