aboutsummaryrefslogtreecommitdiff
path: root/primedev/core/sourceinterface.h
diff options
context:
space:
mode:
authorF1F7Y <64418963+F1F7Y@users.noreply.github.com>2024-10-06 09:59:22 +0200
committerGitHub <noreply@github.com>2024-10-06 09:59:22 +0200
commit8a29c5bbd05cf52007a8aa3ff833c8fed237a625 (patch)
tree82ab53d8ac22f264ead09b9ba46355badf4d7eee /primedev/core/sourceinterface.h
parent71349f05b69923dbf091d27f8e256bcc3022e859 (diff)
downloadNorthstarLauncher-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/sourceinterface.h')
-rw-r--r--primedev/core/sourceinterface.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/primedev/core/sourceinterface.h b/primedev/core/sourceinterface.h
deleted file mode 100644
index 730339da..00000000
--- a/primedev/core/sourceinterface.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include <string>
-
-// interface return status
-enum class InterfaceStatus : int
-{
- IFACE_OK = 0,
- IFACE_FAILED,
-};
-
-// literally just copied from ttf2sdk definition
-typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
-
-template <typename T> class SourceInterface
-{
-private:
- T* m_interface;
-
-public:
- SourceInterface(const std::string& moduleName, const std::string& interfaceName)
- {
- HMODULE handle = GetModuleHandleA(moduleName.c_str());
- CreateInterfaceFn createInterface = (CreateInterfaceFn)GetProcAddress(handle, "CreateInterface");
- m_interface = (T*)createInterface(interfaceName.c_str(), NULL);
- if (m_interface == nullptr)
- spdlog::error("Failed to call CreateInterface for %s in %s", interfaceName, moduleName);
- }
-
- T* operator->() const { return m_interface; }
-
- operator T*() const { return m_interface; }
-};