project64/Source/Android/PluginInput/about.cpp

10 lines
179 B
C++

#ifdef _WIN32
#include <Windows.h>
#endif
void ShowAboutWindow (void * hParent)
{
#ifdef _WIN32
MessageBox((HWND)hParent,L"Android Input Plugin",L"Dll About",MB_OK);
#endif
}