- deleted temporary files, generated files, binaries

- migrated project files to Visual C++ 2005 Express - the latest, the best, for free
 - converted to an Unicode application

svn path=/trunk/; revision=21432
This commit is contained in:
KJK::Hyperion 2006-04-01 15:02:38 +00:00
parent 7908ce58a8
commit 018539280c
21 changed files with 686 additions and 978 deletions

View file

@ -42,7 +42,7 @@ int WINAPI WinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPSTR CmdLine,
if (!CheckWinVer())
{
MessageBox (GetDesktopWindow(), "Sorry, this program requires Windows 2000.", "Error", MB_OK);
MessageBox (GetDesktopWindow(), L"Sorry, this program requires Windows 2000.", L"Error", MB_OK);
return (0);
}
@ -51,7 +51,7 @@ int WINAPI WinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPSTR CmdLine,
#if 0
AllocConsole ();
if (_CrtDumpMemoryLeaks ())
MessageBox (NULL, "Click OK to quit", "Leaks", MB_OK);
MessageBox (NULL, L"Click OK to quit", L"Leaks", MB_OK);
#endif
return (0);