00001 // dsfAnxMux.cpp : Defines the entry point for the DLL application. 00002 // 00003 00004 #include "stdafx.h" 00005 #include "dsfAnxMux.h" 00006 BOOL APIENTRY DllMain( HANDLE hModule, 00007 DWORD ul_reason_for_call, 00008 LPVOID lpReserved 00009 ) 00010 { 00011 switch (ul_reason_for_call) 00012 { 00013 case DLL_PROCESS_ATTACH: 00014 case DLL_THREAD_ATTACH: 00015 case DLL_THREAD_DETACH: 00016 case DLL_PROCESS_DETACH: 00017 break; 00018 } 00019 return TRUE; 00020 } 00021