Remove unicode characters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9493 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-01-18 09:48:08 +00:00
parent 65791cb6a1
commit 308617e605

View File

@ -58,7 +58,7 @@ void os::init(int /* argc */, char * argv[])
*
* #if defined (_WIN32)
* # define WIN32_LEAN_AND_MEAN
* # include <stdlib.h>  // for __argc, __argv
* # include <stdlib.h> // for __argc,__argv
* # include <windows.h> // for WinMain
* #endif
*
@ -68,7 +68,7 @@ void os::init(int /* argc */, char * argv[])
* #if defined (_WIN32)
* int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
* {
*     return mymain(__argc, __argv);
* return mymain(__argc, __argv);
* }
* #endif
*
@ -79,9 +79,9 @@ void os::init(int /* argc */, char * argv[])
*
* #ifdef WIN32
* AllocConsole();
* freopen("conin$", "r", stdin);
*  freopen("conout$", "w", stdout);
*  freopen("conout$", "w", stderr);
* freopen("conin$","r",stdin);
* freopen("conout$","w",stdout);
* freopen("conout$","w",stderr);
* #endif
*
* This code could be invoked (say) the first time that lyxerr