text viewer: reworks screen access logics and some bugs fix.
[kugel-rb.git] / utils / MTP / MTP_DLL / MTP_DLL.cpp
blob2d9bbe48cb41a0dc3e1abe597980e0f67c6b8f0b
1 /* MTP_DLL.cpp : Defines the entry point for the DLL application. */
3 #include <windows.h>
4 #include "MTP_DLL.h"
7 #ifdef _MANAGED
8 #pragma managed(push, off)
9 #endif
11 BOOL APIENTRY DllMain( HMODULE hModule,
12 DWORD ul_reason_for_call,
13 LPVOID lpReserved
16 return TRUE;
19 #ifdef _MANAGED
20 #pragma managed(pop)
21 #endif