(w32_window_app): Init common controls when windowed.
This commit is contained in:
parent
2e2d237718
commit
dbf60b0750
2 changed files with 14 additions and 3 deletions
|
@ -35,6 +35,7 @@ Boston, MA 02110-1301, USA. */
|
|||
# include <malloc.h>
|
||||
# include <stdlib.h>
|
||||
# include <windows.h>
|
||||
# include <commctrl.h>
|
||||
|
||||
# define NO_SOCKETS_IN_FILE_SYSTEM
|
||||
|
||||
|
@ -159,9 +160,13 @@ w32_window_app ()
|
|||
char szTitle[MAX_PATH];
|
||||
|
||||
if (window_app < 0)
|
||||
/* Checking for STDOUT does not work; it's a valid handle also in
|
||||
nonconsole apps. Testing for the console title seems to work. */
|
||||
window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0);
|
||||
{
|
||||
/* Checking for STDOUT does not work; it's a valid handle also in
|
||||
nonconsole apps. Testing for the console title seems to work. */
|
||||
window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0);
|
||||
if (window_app)
|
||||
InitCommonControls();
|
||||
}
|
||||
|
||||
return window_app;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue