2009-02-19 18:36:57 +00:00
|
|
|
/* MTP_DLL.cpp : Defines the entry point for the DLL application. */
|
|
|
|
|
2009-06-13 08:12:41 +00:00
|
|
|
#include <windows.h>
|
2009-02-19 18:36:57 +00:00
|
|
|
#include "MTP_DLL.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _MANAGED
|
|
|
|
#pragma managed(push, off)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
BOOL APIENTRY DllMain( HMODULE hModule,
|
|
|
|
DWORD ul_reason_for_call,
|
|
|
|
LPVOID lpReserved
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _MANAGED
|
|
|
|
#pragma managed(pop)
|
2008-07-03 22:01:37 +00:00
|
|
|
#endif
|