added build env for VC++

This commit is contained in:
strawmanbobi
2016-12-14 21:37:56 +08:00
parent 6653c7ac8f
commit 684dedfa90
26 changed files with 349 additions and 96 deletions

18
src/ir_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;
}