summaryrefslogtreecommitdiffstats
path: root/utils/MTP/MTP_DLL/MTP_DLL.cpp
blob: 2d9bbe48cb41a0dc3e1abe597980e0f67c6b8f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* MTP_DLL.cpp : Defines the entry point for the DLL application. */

#include <windows.h>
#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)
#endif