From ebee8da05cc02fa8da0cbdc47dd9f379e20b962a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 28 Jun 2017 12:42:20 -0700 Subject: Start a router DLL Experimental, Windows only. This is intended as an alternative to Creative's router DLL, fixing a few issues with it (falsely reporting extensions that aren't supported, not being able to query the ALC version without a device, and not being able to use ALC extension functions). When enabled OpenAL Soft's DLL is built as soft_oal.dll, while the router is OpenAL32.dll. --- router/router.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 router/router.c (limited to 'router/router.c') diff --git a/router/router.c b/router/router.c new file mode 100644 index 00000000..cb1bf763 --- /dev/null +++ b/router/router.c @@ -0,0 +1,19 @@ + +#define WIN32_LEAN_AND_MEAN +#include + +BOOL APIENTRY DllMain(HINSTANCE hModule, DWORD reason, LPVOID lpReserved) +{ + switch(reason) + { + case DLL_PROCESS_ATTACH: + break; + + case DLL_THREAD_DETACH: + break; + + case DLL_PROCESS_DETACH: + break; + } + return TRUE; +} -- cgit v1.2.3