Maurus Cuelenaere | 5883f09 | 2009-02-19 18:36:57 +0000 | [diff] [blame] | 1 | /* MTP_DLL.cpp : Defines the entry point for the DLL application. */ |
| 2 | |
Dominik Riebeling | bc18818 | 2009-06-13 08:12:41 +0000 | [diff] [blame] | 3 | #include <windows.h> |
Maurus Cuelenaere | 5883f09 | 2009-02-19 18:36:57 +0000 | [diff] [blame] | 4 | #include "MTP_DLL.h" |
| 5 | |
| 6 | |
| 7 | #ifdef _MANAGED |
| 8 | #pragma managed(push, off) |
| 9 | #endif |
| 10 | |
| 11 | BOOL 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 Cuelenaere | b42a51b | 2008-07-03 22:01:37 +0000 | [diff] [blame] | 21 | #endif |