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
This commit is contained in:
Bo Peng 2006-08-11 04:47:22 +00:00
parent 607fcadbeb
commit 8d6ba67353

View File

@ -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)