File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -440,6 +440,20 @@ BOOL CreateConsole()
440440 return FALSE ;
441441 }
442442
443+ CONSOLE_SCREEN_BUFFER_INFO csbi;
444+ if (GetConsoleScreenBufferInfo (GetStdHandle (STD_ERROR_HANDLE), &csbi))
445+ {
446+ COORD size = csbi.dwSize ;
447+ if (size.Y < 2048 )
448+ {
449+ size.Y = 2048 ;
450+ if (!SetConsoleScreenBufferSize (GetStdHandle (STD_ERROR_HANDLE), size))
451+ {
452+ printf (" Unable to set console screen buffer size!\n " );
453+ }
454+ }
455+ }
456+
443457 return TRUE ;
444458}
445459
Original file line number Diff line number Diff line change 77</h3>
88<h3>Command Lines</h3>
99Creating command line "rc.exe /l 0x409 /fo"Release/taskbar.res" /d "NDEBUG" "D:\Develop\taskbar\taskbar.rc""
10- Creating temporary file "C:\Users\phuslu\AppData\Local\Temp\RSP3B1E.tmp" with contents
11- [
12- /nologo /MD /W3 /GX /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /FR"Release/" /Fo"Release/" /Fd"Release/" /FD /c
13- "D:\Develop\taskbar\taskbar.cpp"
14- ]
15- Creating command line "cl.exe @C:\Users\phuslu\AppData\Local\Temp\RSP3B1E.tmp"
1610Creating command line "link.exe kernel32.lib user32.lib /nologo /subsystem:windows /pdb:none /machine:I386 /out:"Release/goproxy-gui.exe" .\Release\taskbar.obj .\Release\taskbar.res "
1711<h3>Output Window</h3>
1812Compiling resources...
19- Compiling...
20- taskbar.cpp
2113Linking...
22- Creating command line "bscmake.exe /nologo /o"Release/taskbar.bsc" .\Release\taskbar.sbr"
23- Creating browse info file...
24- <h3>Output Window</h3>
2514
2615
2716
Original file line number Diff line number Diff line change 129129STRINGTABLE DISCARDABLE
130130BEGIN
131131 IDS_CMDLINE "goproxy.exe -v=2"
132- IDS_ENVIRONMENT "TASKBAR_VISIBLE=0\nTASKBAR_TOOLTIP=GoProxy\nTASKBAR_TITLE=GoProxy Notify\nTASKBAR_BALLOON=GoAgent �Ѿ���������������ͼ�������С����\n"
132+ IDS_ENVIRONMENT "TASKBAR_VISIBLE=0\nTASKBAR_TOOLTIP=GoProxy\nTASKBAR_TITLE=GoProxy Notify\nTASKBAR_BALLOON=GoProxy �Ѿ���������������ͼ�������С����\n"
133133 IDS_PROXYLIST "http://127.0.0.1:8087/proxy.pac\n127.0.0.1:8087\n"
134134 IDS_RASPBK "%APPDATA%\\Microsoft\\Network\\Connections\\Pbk\n%ALLUSERSPROFILE%\\Microsoft\\Network\\Connections\\Pbk\n%ALLUSERSPROFILE%\\Application Data\\Microsoft\\Network\\Connections\\Pbk\\rasphone.pbk\n"
135135END
You can’t perform that action at this time.
0 commit comments