Mercurial > mm7
view OSAPI.cpp @ 1147:9ba9fd8e6d68
sub_451007_scale_image_bicubic cleanup - some more code shuffling
author | Grumpy7 |
---|---|
date | Sun, 02 Jun 2013 03:59:13 +0200 |
parents | 39f42990698f |
children | c4ab816fcc5e |
line wrap: on
line source
#include "OSAPI.h" #include "OSInfo.h" #include "Log.h" OSVersion *pVersion = nullptr; //----- (00462C94) -------------------------------------------------------- int __stdcall wWinMain(HINSTANCE hInstance, HINSTANCE, wchar_t *lpCmdLine, int nShowCmd) { Log::Initialize(); //if (HWND hMM7Window = FindWindowW(L"MM7", 0)) if (HWND hMM7Window = FindWindowW(L"M&MTrilogy", 0)) { if (IsIconic(hMM7Window)) ShowWindow(hMM7Window, SW_RESTORE); SetForegroundWindow(GetLastActivePopup(hMM7Window)); return 0; } HWND hPrevWindow = GetActiveWindow(); pVersion = new OSVersion; { Log::Warning(L"OS init: ok"); extern bool MM_Main(const wchar_t *pCmdLine); MM_Main(lpCmdLine); } delete pVersion; pVersion = nullptr; SetPriorityClass(GetCurrentProcess(), NORMAL_PRIORITY_CLASS); if (hPrevWindow) SetActiveWindow(hPrevWindow); //__debugbreak(); return 0; }