blob: 2d9bbe48cb41a0dc3e1abe597980e0f67c6b8f0b [file] [log] [blame]
Maurus Cuelenaere5883f092009-02-19 18:36:57 +00001/* MTP_DLL.cpp : Defines the entry point for the DLL application. */
2
Dominik Riebelingbc188182009-06-13 08:12:41 +00003#include <windows.h>
Maurus Cuelenaere5883f092009-02-19 18:36:57 +00004#include "MTP_DLL.h"
5
6
7#ifdef _MANAGED
8#pragma managed(push, off)
9#endif
10
11BOOL APIENTRY DllMain( HMODULE hModule,
12 DWORD ul_reason_for_call,
13 LPVOID lpReserved
14 )
15{
16 return TRUE;
17}
18
19#ifdef _MANAGED
20#pragma managed(pop)
Maurus Cuelenaereb42a51b2008-07-03 22:01:37 +000021#endif