#include "StdAfx.h" #include "CompletionWindow.h" using namespace SleipnirGoogleSuggest; int APIENTRY _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int) { CompletionWindow w; MSG msg = {}; while(GetMessage(&msg, NULL, 0, 0) > 0){ TranslateMessage(&msg); DispatchMessage(&msg); } return msg.wParam; }