From 8d6ba6735316d34aa2ccbf4d8f3e4907f6355981 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Fri, 11 Aug 2006 04:47:22 +0000 Subject: [PATCH] Correct Russian->English translation for development/Win32/hidecmd.c, by hasherfrog git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14612 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/Win32/hidecmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/development/Win32/hidecmd.c b/development/Win32/hidecmd.c index 19fcbafbf1..60500d1e60 100644 --- a/development/Win32/hidecmd.c +++ b/development/Win32/hidecmd.c @@ -47,9 +47,11 @@ #pragma comment(linker,"/NODEFAULTLIB") // unite code and data section (make the program smaller) #pragma comment(linker,"/MERGE:.rdata=.text") -// resolve record in section of code +// open code section for writing #pragma comment(linker,"/SECTION:.text,EWR") -// the new entry point (the WinMain entry point is big) +// redefine an entry point of the executable +// Must be used, if entry point 'void NewWinMain(void)' is used, +// instead of the standart 'int WINAPI WinMain(HINSTANCE hInst, ...)' #pragma comment(linker,"/ENTRY:NewWinMain") void NewWinMain(void)