rockbox/utils/MTP/MTP_DLL/MTP_DLL.cpp

21 lines
383 B
C++
Raw Normal View History

/* MTP_DLL.cpp : Defines the entry point for the DLL application. */
#include "stdafx.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