removed src directory

This commit is contained in:
strawmanbobi
2025-08-19 08:33:42 +08:00
parent 6457ca60d9
commit 794fee0963
56 changed files with 0 additions and 181 deletions

18
decoder/dllmain.c Normal file
View File

@@ -0,0 +1,18 @@
#include "stdafx.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}