summaryrefslogtreecommitdiff
path: root/utils/MTP/MTP_DLL/MTP_DLL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/MTP/MTP_DLL/MTP_DLL.cpp')
-rw-r--r--utils/MTP/MTP_DLL/MTP_DLL.cpp41
1 files changed, 20 insertions, 21 deletions
diff --git a/utils/MTP/MTP_DLL/MTP_DLL.cpp b/utils/MTP/MTP_DLL/MTP_DLL.cpp
index ffd314a697..73085afaee 100644
--- a/utils/MTP/MTP_DLL/MTP_DLL.cpp
+++ b/utils/MTP/MTP_DLL/MTP_DLL.cpp
@@ -1,22 +1,21 @@
1// MTP_DLL.cpp : Defines the entry point for the DLL application. 1/* MTP_DLL.cpp : Defines the entry point for the DLL application. */
2// 2
3 3#include "stdafx.h"
4#include "stdafx.h" 4#include "MTP_DLL.h"
5#include "MTP_DLL.h" 5
6 6
7 7#ifdef _MANAGED
8#ifdef _MANAGED 8#pragma managed(push, off)
9#pragma managed(push, off) 9#endif
10#endif 10
11 11BOOL APIENTRY DllMain( HMODULE hModule,
12BOOL APIENTRY DllMain( HMODULE hModule, 12 DWORD ul_reason_for_call,
13 DWORD ul_reason_for_call, 13 LPVOID lpReserved
14 LPVOID lpReserved 14 )
15 ) 15{
16{ 16 return TRUE;
17 return TRUE; 17}
18} 18
19 19#ifdef _MANAGED
20#ifdef _MANAGED 20#pragma managed(pop)
21#pragma managed(pop)
22#endif \ No newline at end of file 21#endif \ No newline at end of file