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.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/utils/MTP/MTP_DLL/MTP_DLL.cpp b/utils/MTP/MTP_DLL/MTP_DLL.cpp
new file mode 100644
index 0000000000..8d8e2502c9
--- /dev/null
+++ b/utils/MTP/MTP_DLL/MTP_DLL.cpp
@@ -0,0 +1,22 @@
1// MTP_DLL.cpp : Defines the entry point for the DLL application.
2//
3
4#include "stdafx.h"
5#include "MTP_DLL.h"
6
7
8#ifdef _MANAGED
9#pragma managed(push, off)
10#endif
11
12BOOL APIENTRY DllMain( HMODULE hModule,
13 DWORD ul_reason_for_call,
14 LPVOID lpReserved
15 )
16{
17 return TRUE;
18}
19
20#ifdef _MANAGED
21#pragma managed(pop)
22#endif \ No newline at end of file