2 * an application for displaying Win32 console
4 * Copyright 2001, 2002 Eric Pouech
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 #include "wine/server.h"
27 #include "winecon_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(wineconsole
);
35 void WINECON_Fatal(const char* msg
)
37 WINE_ERR("%s\n", msg
);
41 static void printf_res(UINT uResId
, ...)
47 va_start(args
, uResId
);
48 LoadStringW(GetModuleHandle(NULL
), uResId
, buffer
, sizeof(buffer
)/sizeof(WCHAR
));
49 WideCharToMultiByte(CP_UNIXCP
, 0, buffer
, -1, ansi
, sizeof(ansi
), NULL
, NULL
);
54 static void WINECON_Usage(void)
56 printf_res(IDS_USAGE_HEADER
);
57 printf_res(IDS_USAGE_BACKEND
);
58 printf_res(IDS_USAGE_COMMAND
);
59 printf_res(IDS_USAGE_FOOTER
);
62 /******************************************************************
65 * updates the local copy of cells (band to update)
67 void WINECON_FetchCells(struct inner_data
* data
, int upd_tp
, int upd_bm
)
69 SERVER_START_REQ( read_console_output
)
71 req
->handle
= data
->hConOut
;
74 req
->mode
= CHAR_INFO_MODE_TEXTATTR
;
76 wine_server_set_reply( req
, &data
->cells
[upd_tp
* data
->curcfg
.sb_width
],
77 (upd_bm
-upd_tp
+1) * data
->curcfg
.sb_width
* sizeof(CHAR_INFO
) );
78 wine_server_call( req
);
81 data
->fnRefresh(data
, upd_tp
, upd_bm
);
84 /******************************************************************
85 * WINECON_NotifyWindowChange
87 * Inform server that visible window on sb has changed
89 void WINECON_NotifyWindowChange(struct inner_data
* data
)
91 SERVER_START_REQ( set_console_output_info
)
93 req
->handle
= data
->hConOut
;
94 req
->win_left
= data
->curcfg
.win_pos
.X
;
95 req
->win_top
= data
->curcfg
.win_pos
.Y
;
96 req
->win_right
= data
->curcfg
.win_pos
.X
+ data
->curcfg
.win_width
- 1;
97 req
->win_bottom
= data
->curcfg
.win_pos
.Y
+ data
->curcfg
.win_height
- 1;
98 req
->mask
= SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW
;
99 wine_server_call( req
);
104 /******************************************************************
105 * WINECON_GetHistorySize
109 int WINECON_GetHistorySize(HANDLE hConIn
)
113 SERVER_START_REQ(get_console_input_info
)
115 req
->handle
= hConIn
;
116 if (!wine_server_call_err( req
)) ret
= reply
->history_size
;
122 /******************************************************************
123 * WINECON_SetHistorySize
127 BOOL
WINECON_SetHistorySize(HANDLE hConIn
, int size
)
131 SERVER_START_REQ(set_console_input_info
)
133 req
->handle
= hConIn
;
134 req
->mask
= SET_CONSOLE_INPUT_INFO_HISTORY_SIZE
;
135 req
->history_size
= size
;
136 ret
= !wine_server_call_err( req
);
143 /******************************************************************
144 * WINECON_GetHistoryMode
148 int WINECON_GetHistoryMode(HANDLE hConIn
)
152 SERVER_START_REQ(get_console_input_info
)
154 req
->handle
= hConIn
;
155 if (!wine_server_call_err( req
)) ret
= reply
->history_mode
;
161 /******************************************************************
162 * WINECON_SetHistoryMode
166 BOOL
WINECON_SetHistoryMode(HANDLE hConIn
, int mode
)
170 SERVER_START_REQ(set_console_input_info
)
172 req
->handle
= hConIn
;
173 req
->mask
= SET_CONSOLE_INPUT_INFO_HISTORY_MODE
;
174 req
->history_mode
= mode
;
175 ret
= !wine_server_call_err( req
);
181 /******************************************************************
182 * WINECON_GetConsoleTitle
186 BOOL
WINECON_GetConsoleTitle(HANDLE hConIn
, WCHAR
* buffer
, size_t len
)
190 if (len
< sizeof(WCHAR
)) return FALSE
;
192 SERVER_START_REQ( get_console_input_info
)
194 req
->handle
= hConIn
;
195 wine_server_set_reply( req
, buffer
, len
- sizeof(WCHAR
) );
196 if ((ret
= !wine_server_call_err( req
)))
198 len
= wine_server_reply_size( reply
);
199 buffer
[len
/ sizeof(WCHAR
)] = 0;
206 /******************************************************************
207 * WINECON_SetEditionMode
211 static BOOL
WINECON_SetEditionMode(HANDLE hConIn
, int edition_mode
)
215 SERVER_START_REQ( set_console_input_info
)
217 req
->handle
= hConIn
;
218 req
->mask
= SET_CONSOLE_INPUT_INFO_EDITION_MODE
;
219 req
->edition_mode
= edition_mode
;
220 ret
= !wine_server_call_err( req
);
226 /******************************************************************
227 * WINECON_GrabChanges
229 * A change occurs, try to figure out which
231 int WINECON_GrabChanges(struct inner_data
* data
)
233 struct console_renderer_event evts
[256];
234 int i
, num
, ev_found
;
237 SERVER_START_REQ( get_console_renderer_events
)
239 wine_server_set_reply( req
, evts
, sizeof(evts
) );
240 req
->handle
= data
->hSynchro
;
241 if (!wine_server_call_err( req
)) num
= wine_server_reply_size(reply
) / sizeof(evts
[0]);
245 if (!num
) {WINE_WARN("hmm renderer signaled but no events available\n"); return 1;}
247 /* FIXME: should do some event compression here (cursor pos, update) */
248 /* step 1: keep only last cursor pos event */
250 for (i
= num
- 1; i
>= 0; i
--)
252 if (evts
[i
].event
== CONSOLE_RENDERER_CURSOR_POS_EVENT
)
255 evts
[i
].event
= CONSOLE_RENDERER_NONE_EVENT
;
259 /* step 2: manage update events */
261 for (i
= 0; i
< num
; i
++)
263 if (evts
[i
].event
== CONSOLE_RENDERER_NONE_EVENT
||
264 evts
[i
].event
== CONSOLE_RENDERER_CURSOR_POS_EVENT
||
265 evts
[i
].event
== CONSOLE_RENDERER_CURSOR_GEOM_EVENT
) continue;
266 if (evts
[i
].event
!= CONSOLE_RENDERER_UPDATE_EVENT
)
272 if (ev_found
!= -1 && /* Only 2 cases where they CANNOT merge */
273 !(evts
[i
].u
.update
.bottom
+ 1 < evts
[ev_found
].u
.update
.top
||
274 evts
[ev_found
].u
.update
.bottom
+ 1 < evts
[i
].u
.update
.top
))
276 evts
[i
].u
.update
.top
= min(evts
[i
].u
.update
.top
,
277 evts
[ev_found
].u
.update
.top
);
278 evts
[i
].u
.update
.bottom
= max(evts
[i
].u
.update
.bottom
,
279 evts
[ev_found
].u
.update
.bottom
);
280 evts
[ev_found
].event
= CONSOLE_RENDERER_NONE_EVENT
;
285 WINE_TRACE("Events:");
286 for (i
= 0; i
< num
; i
++)
288 switch (evts
[i
].event
)
290 case CONSOLE_RENDERER_NONE_EVENT
:
293 case CONSOLE_RENDERER_TITLE_EVENT
:
294 WINE_TRACE(" title()");
295 data
->fnSetTitle(data
);
297 case CONSOLE_RENDERER_ACTIVE_SB_EVENT
:
298 SERVER_START_REQ( open_console
)
300 req
->from
= data
->hConIn
;
301 req
->access
= GENERIC_READ
| GENERIC_WRITE
;
303 req
->share
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
304 h
= wine_server_call_err( req
) ? 0 : (HANDLE
)reply
->handle
;
307 WINE_TRACE(" active(%p)", h
);
310 CloseHandle(data
->hConOut
);
314 case CONSOLE_RENDERER_SB_RESIZE_EVENT
:
315 if (data
->curcfg
.sb_width
!= evts
[i
].u
.resize
.width
||
316 data
->curcfg
.sb_height
!= evts
[i
].u
.resize
.height
)
318 WINE_TRACE(" resize(%d,%d)", evts
[i
].u
.resize
.width
, evts
[i
].u
.resize
.height
);
319 data
->curcfg
.sb_width
= evts
[i
].u
.resize
.width
;
320 data
->curcfg
.sb_height
= evts
[i
].u
.resize
.height
;
322 data
->cells
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, data
->cells
,
323 data
->curcfg
.sb_width
* data
->curcfg
.sb_height
* sizeof(CHAR_INFO
));
325 if (!data
->cells
) WINECON_Fatal("OOM\n");
326 data
->fnResizeScreenBuffer(data
);
327 data
->fnComputePositions(data
);
330 case CONSOLE_RENDERER_UPDATE_EVENT
:
331 WINE_TRACE(" update(%d,%d)", evts
[i
].u
.update
.top
, evts
[i
].u
.update
.bottom
);
332 WINECON_FetchCells(data
, evts
[i
].u
.update
.top
, evts
[i
].u
.update
.bottom
);
334 case CONSOLE_RENDERER_CURSOR_POS_EVENT
:
335 if (evts
[i
].u
.cursor_pos
.x
!= data
->cursor
.X
|| evts
[i
].u
.cursor_pos
.y
!= data
->cursor
.Y
)
337 WINE_TRACE(" curs-pos(%d,%d)",evts
[i
].u
.cursor_pos
.x
, evts
[i
].u
.cursor_pos
.y
);
338 data
->cursor
.X
= evts
[i
].u
.cursor_pos
.x
;
339 data
->cursor
.Y
= evts
[i
].u
.cursor_pos
.y
;
340 data
->fnPosCursor(data
);
343 case CONSOLE_RENDERER_CURSOR_GEOM_EVENT
:
344 if (evts
[i
].u
.cursor_geom
.size
!= data
->curcfg
.cursor_size
||
345 evts
[i
].u
.cursor_geom
.visible
!= data
->curcfg
.cursor_visible
)
347 WINE_TRACE(" curs-geom(%d,%d)",
348 evts
[i
].u
.cursor_geom
.size
, evts
[i
].u
.cursor_geom
.visible
);
349 data
->fnShapeCursor(data
, evts
[i
].u
.cursor_geom
.size
,
350 evts
[i
].u
.cursor_geom
.visible
, FALSE
);
353 case CONSOLE_RENDERER_DISPLAY_EVENT
:
354 if (evts
[i
].u
.display
.left
!= data
->curcfg
.win_pos
.X
)
356 WINE_TRACE(" h-scroll(%d)", evts
[i
].u
.display
.left
);
357 data
->fnScroll(data
, evts
[i
].u
.display
.left
, TRUE
);
358 data
->fnPosCursor(data
);
360 if (evts
[i
].u
.display
.top
!= data
->curcfg
.win_pos
.Y
)
362 WINE_TRACE(" v-scroll(%d)", evts
[i
].u
.display
.top
);
363 data
->fnScroll(data
, evts
[i
].u
.display
.top
, FALSE
);
364 data
->fnPosCursor(data
);
366 if (evts
[i
].u
.display
.width
!= data
->curcfg
.win_width
||
367 evts
[i
].u
.display
.height
!= data
->curcfg
.win_height
)
369 WINE_TRACE(" win-size(%d,%d)", evts
[i
].u
.display
.width
, evts
[i
].u
.display
.height
);
370 data
->curcfg
.win_width
= evts
[i
].u
.display
.width
;
371 data
->curcfg
.win_height
= evts
[i
].u
.display
.height
;
372 data
->fnComputePositions(data
);
375 case CONSOLE_RENDERER_EXIT_EVENT
:
376 WINE_TRACE(". Exit!!\n");
379 WINE_FIXME("Unknown event type (%d)\n", evts
[i
].event
);
387 /******************************************************************
390 * Apply to data all the configuration elements from cfg. This includes modification
391 * of server side equivalent and visual parts.
392 * If force is FALSE, only the changed items are modified.
394 void WINECON_SetConfig(struct inner_data
* data
, const struct config_data
* cfg
)
396 if (data
->curcfg
.cursor_size
!= cfg
->cursor_size
||
397 data
->curcfg
.cursor_visible
!= cfg
->cursor_visible
)
399 CONSOLE_CURSOR_INFO cinfo
;
400 cinfo
.dwSize
= cfg
->cursor_size
;
401 /* <FIXME>: this hack is needed to pass thru the invariant test operation on server side
402 * (no notification is sent when invariant operation is requested
404 cinfo
.bVisible
= !cfg
->cursor_visible
;
405 SetConsoleCursorInfo(data
->hConOut
, &cinfo
);
407 cinfo
.bVisible
= cfg
->cursor_visible
;
408 /* this shall update (through notif) curcfg */
409 SetConsoleCursorInfo(data
->hConOut
, &cinfo
);
411 if (data
->curcfg
.history_size
!= cfg
->history_size
)
413 data
->curcfg
.history_size
= cfg
->history_size
;
414 WINECON_SetHistorySize(data
->hConIn
, cfg
->history_size
);
416 if (data
->curcfg
.history_nodup
!= cfg
->history_nodup
)
418 data
->curcfg
.history_nodup
= cfg
->history_nodup
;
419 WINECON_SetHistoryMode(data
->hConIn
, cfg
->history_nodup
);
421 data
->curcfg
.menu_mask
= cfg
->menu_mask
;
422 data
->curcfg
.quick_edit
= cfg
->quick_edit
;
423 if (1 /* FIXME: font info has changed */)
425 data
->fnSetFont(data
, cfg
->face_name
, cfg
->cell_height
, cfg
->font_weight
);
427 if (data
->curcfg
.def_attr
!= cfg
->def_attr
)
429 data
->curcfg
.def_attr
= cfg
->def_attr
;
430 SetConsoleTextAttribute(data
->hConOut
, cfg
->def_attr
);
432 /* now let's look at the window / sb size changes...
433 * since the server checks that sb is always bigger than window,
434 * we have to take care of doing the operations in the right order
436 /* a set of macros to make things easier to read
437 * The Test<A><B> macros test if the <A> (width/height) needs to be changed
438 * for <B> (window / ScreenBuffer)
439 * The Change<A><B> actually modify the <B> dimension of <A>.
441 #define TstSBfWidth() (data->curcfg.sb_width != cfg->sb_width)
442 #define TstWinWidth() (data->curcfg.win_width != cfg->win_width)
444 #define ChgSBfWidth() do {c.X = cfg->sb_width; \
445 c.Y = data->curcfg.sb_height;\
446 SetConsoleScreenBufferSize(data->hConOut, c);\
448 #define ChgWinWidth() do {pos.Left = pos.Top = 0; \
449 pos.Right = cfg->win_width - data->curcfg.win_width; \
451 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
453 #define TstSBfHeight() (data->curcfg.sb_height != cfg->sb_height)
454 #define TstWinHeight() (data->curcfg.win_height != cfg->win_height)
456 /* since we're going to apply height after width is done, we use width as defined
457 * in cfg, and not in data->curcfg because if won't be updated yet */
458 #define ChgSBfHeight() do {c.X = cfg->sb_width; c.Y = cfg->sb_height; \
459 SetConsoleScreenBufferSize(data->hConOut, c); \
461 #define ChgWinHeight() do {pos.Left = pos.Top = 0; \
463 pos.Bottom = cfg->win_height - data->curcfg.win_height; \
464 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
476 /* we're changing both at the same time, do it in the right order */
477 if (cfg
->sb_width
>= data
->curcfg
.win_width
)
479 ChgSBfWidth(); ChgWinWidth();
483 ChgWinWidth(); ChgSBfWidth();
488 else if (TstWinWidth()) ChgWinWidth();
493 if (cfg
->sb_height
>= data
->curcfg
.win_height
)
495 ChgSBfHeight(); ChgWinHeight();
499 ChgWinHeight(); ChgSBfHeight();
504 else if (TstWinHeight()) ChgWinHeight();
515 data
->curcfg
.exit_on_die
= cfg
->exit_on_die
;
516 if (data
->curcfg
.edition_mode
!= cfg
->edition_mode
)
518 data
->curcfg
.edition_mode
= cfg
->edition_mode
;
519 WINECON_SetEditionMode(data
->hConIn
, cfg
->edition_mode
);
521 /* we now need to gather all events we got from the operations above,
522 * in order to get data correctly updated
524 WINECON_GrabChanges(data
);
527 /******************************************************************
530 * Destroy wineconsole internal data
532 static void WINECON_Delete(struct inner_data
* data
)
536 if (data
->fnDeleteBackend
) data
->fnDeleteBackend(data
);
537 if (data
->hConIn
) CloseHandle(data
->hConIn
);
538 if (data
->hConOut
) CloseHandle(data
->hConOut
);
539 if (data
->hSynchro
) CloseHandle(data
->hSynchro
);
540 HeapFree(GetProcessHeap(), 0, data
->cells
);
541 HeapFree(GetProcessHeap(), 0, data
);
544 /******************************************************************
545 * WINECON_GetServerConfig
547 * Fills data->curcfg with the actual configuration running in the server
548 * (getting real information on the server, and not relying on cached
549 * information in data)
551 static BOOL
WINECON_GetServerConfig(struct inner_data
* data
)
555 SERVER_START_REQ(get_console_input_info
)
557 req
->handle
= data
->hConIn
;
558 ret
= !wine_server_call_err( req
);
559 data
->curcfg
.history_size
= reply
->history_size
;
560 data
->curcfg
.history_nodup
= reply
->history_mode
;
561 data
->curcfg
.edition_mode
= reply
->edition_mode
;
564 if (!ret
) return FALSE
;
565 SERVER_START_REQ(get_console_output_info
)
567 req
->handle
= data
->hConOut
;
568 ret
= !wine_server_call_err( req
);
569 data
->curcfg
.cursor_size
= reply
->cursor_size
;
570 data
->curcfg
.cursor_visible
= reply
->cursor_visible
;
571 data
->curcfg
.def_attr
= reply
->attr
;
572 data
->curcfg
.sb_width
= reply
->width
;
573 data
->curcfg
.sb_height
= reply
->height
;
574 data
->curcfg
.win_width
= reply
->win_right
- reply
->win_left
+ 1;
575 data
->curcfg
.win_height
= reply
->win_bottom
- reply
->win_top
+ 1;
578 WINECON_DumpConfig("first cfg: ", &data
->curcfg
);
583 /******************************************************************
586 * Initialisation part I. Creation of server object (console input and
587 * active screen buffer)
589 static struct inner_data
* WINECON_Init(HINSTANCE hInst
, DWORD pid
, LPCWSTR appname
,
590 enum init_return (*backend
)(struct inner_data
*),
593 struct inner_data
* data
= NULL
;
595 struct config_data cfg
;
598 data
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*data
));
605 if (!si
.lpTitle
) WINECON_Fatal("Should have a title set");
606 appname
= si
.lpTitle
;
609 data
->nCmdShow
= nCmdShow
;
611 WINECON_RegLoad(appname
, &cfg
);
616 if (si
.dwFlags
& STARTF_USECOUNTCHARS
)
618 cfg
.sb_width
= si
.dwXCountChars
;
619 cfg
.sb_height
= si
.dwYCountChars
;
621 if (si
.dwFlags
& STARTF_USEFILLATTRIBUTE
)
622 cfg
.def_attr
= si
.dwFillAttribute
;
623 /* should always be defined */
626 /* the handles here are created without the whistles and bells required by console
627 * (mainly because wineconsole doesn't need it)
628 * - they are not inheritable
629 * - hConIn is not synchronizable
631 SERVER_START_REQ(alloc_console
)
633 req
->access
= GENERIC_READ
| GENERIC_WRITE
;
637 ret
= !wine_server_call_err( req
);
638 data
->hConIn
= (HANDLE
)reply
->handle_in
;
639 data
->hSynchro
= (HANDLE
)reply
->event
;
642 if (!ret
) goto error
;
643 WINE_TRACE("using hConIn %p, hSynchro event %p\n", data
->hConIn
, data
->hSynchro
);
645 SERVER_START_REQ(create_console_output
)
647 req
->handle_in
= data
->hConIn
;
648 req
->access
= GENERIC_WRITE
|GENERIC_READ
;
650 req
->share
= FILE_SHARE_READ
|FILE_SHARE_WRITE
;
651 ret
= !wine_server_call_err( req
);
652 data
->hConOut
= (HANDLE
)reply
->handle_out
;
655 if (!ret
) goto error
;
656 WINE_TRACE("using hConOut %p\n", data
->hConOut
);
658 /* filling data->curcfg from cfg */
659 switch ((*backend
)(data
))
661 case init_not_supported
:
662 if (backend
== WCCURSES_InitBackend
)
664 if (WCUSER_InitBackend( data
) != init_success
) break;
666 else if (backend
== WCUSER_InitBackend
)
668 if (WCCURSES_InitBackend( data
) != init_success
) break;
672 WINECON_GetServerConfig(data
);
673 data
->cells
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
674 data
->curcfg
.sb_width
* data
->curcfg
.sb_height
* sizeof(CHAR_INFO
));
675 if (!data
->cells
) WINECON_Fatal("OOM\n");
676 data
->fnResizeScreenBuffer(data
);
677 data
->fnComputePositions(data
);
678 WINECON_SetConfig(data
, &cfg
);
679 data
->curcfg
.registry
= cfg
.registry
;
680 WINECON_DumpConfig("fint", &data
->curcfg
);
681 SERVER_START_REQ( set_console_input_info
)
683 req
->handle
= data
->hConIn
;
684 req
->win
= data
->hWnd
;
685 req
->mask
= SET_CONSOLE_INPUT_INFO_TITLE
|
686 SET_CONSOLE_INPUT_INFO_WIN
;
687 wine_server_add_data( req
, appname
, lstrlenW(appname
) * sizeof(WCHAR
) );
688 ret
= !wine_server_call_err( req
);
691 if (!ret
) goto error
;
699 WINE_ERR("failed to init.\n");
701 WINECON_Delete(data
);
705 /******************************************************************
708 * Spawn the child process when invoked with wineconsole foo bar
710 static BOOL
WINECON_Spawn(struct inner_data
* data
, LPWSTR cmdLine
)
712 PROCESS_INFORMATION info
;
716 /* we're in the case wineconsole <exe> <options>... spawn the new process */
717 memset(&startup
, 0, sizeof(startup
));
718 startup
.cb
= sizeof(startup
);
719 startup
.dwFlags
= STARTF_USESTDHANDLES
;
721 /* the attributes of wineconsole's handles are not adequate for inheritance, so
722 * get them with the correct attributes before process creation
724 if (!DuplicateHandle(GetCurrentProcess(), data
->hConIn
, GetCurrentProcess(),
725 &startup
.hStdInput
, GENERIC_READ
|GENERIC_WRITE
|SYNCHRONIZE
, TRUE
, 0) ||
726 !DuplicateHandle(GetCurrentProcess(), data
->hConOut
, GetCurrentProcess(),
727 &startup
.hStdOutput
, GENERIC_READ
|GENERIC_WRITE
, TRUE
, 0) ||
728 !DuplicateHandle(GetCurrentProcess(), data
->hConOut
, GetCurrentProcess(),
729 &startup
.hStdError
, GENERIC_READ
|GENERIC_WRITE
, TRUE
, 0))
731 WINE_ERR("Can't dup handles\n");
732 /* no need to delete handles, we're exiting the program anyway */
736 done
= CreateProcess(NULL
, cmdLine
, NULL
, NULL
, TRUE
, 0L, NULL
, NULL
, &startup
, &info
);
738 /* we no longer need the handles passed to the child for the console */
739 CloseHandle(startup
.hStdInput
);
740 CloseHandle(startup
.hStdOutput
);
741 CloseHandle(startup
.hStdError
);
743 CloseHandle(info
.hProcess
);
744 CloseHandle(info
.hThread
);
751 enum {from_event
, from_process_name
} mode
;
752 enum init_return (*backend
)(struct inner_data
*);
756 #define WINECON_CMD_SHOW_USAGE 0x10000
758 /******************************************************************
759 * WINECON_ParseOptions
763 * On error: error string id optionally with the CMD_SHOW_USAGE flag
765 static UINT
WINECON_ParseOptions(const char* lpCmdLine
, struct wc_init
* wci
)
767 memset(wci
, 0, sizeof(*wci
));
768 wci
->ptr
= lpCmdLine
;
769 wci
->mode
= from_process_name
;
770 wci
->backend
= WCUSER_InitBackend
;
774 while (*wci
->ptr
== ' ' || *wci
->ptr
== '\t') wci
->ptr
++;
775 if (wci
->ptr
[0] != '-') break;
776 if (strncmp(wci
->ptr
, "--use-event=", 12) == 0)
779 wci
->event
= (HANDLE
)strtol(wci
->ptr
+ 12, &end
, 10);
780 if (end
== wci
->ptr
+ 12) return IDS_CMD_INVALID_EVENT_ID
;
781 wci
->mode
= from_event
;
783 wci
->backend
= WCUSER_InitBackend
;
785 else if (strncmp(wci
->ptr
, "--backend=", 10) == 0)
787 if (strncmp(wci
->ptr
+ 10, "user", 4) == 0)
789 wci
->backend
= WCUSER_InitBackend
;
792 else if (strncmp(wci
->ptr
+ 10, "curses", 6) == 0)
794 wci
->backend
= WCCURSES_InitBackend
;
798 return IDS_CMD_INVALID_BACKEND
;
801 return IDS_CMD_INVALID_OPTION
|WINECON_CMD_SHOW_USAGE
;
804 if (wci
->mode
== from_event
)
807 while (*wci
->ptr
== ' ' || *wci
->ptr
== '\t') wci
->ptr
++;
809 return IDS_CMD_ABOUT
|WINECON_CMD_SHOW_USAGE
;
814 /******************************************************************
817 * wineconsole can either be started as:
818 * wineconsole --use-event=<int> used when a new console is created (AllocConsole)
819 * wineconsole <pgm> <arguments> used to start the program <pgm> from the command line in
820 * a freshly created console
821 * --backend=(curses|user) can also be used to select the desired backend
823 int PASCAL
WinMain(HINSTANCE hInst
, HINSTANCE hPrev
, LPSTR lpCmdLine
, INT nCmdShow
)
825 struct inner_data
* data
;
829 if ((ret
= WINECON_ParseOptions(lpCmdLine
, &wci
)) != 0)
831 printf_res(ret
& 0xffff);
832 if (ret
& WINECON_CMD_SHOW_USAGE
)
840 /* case of wineconsole <evt>, signal process that created us that we're up and running */
841 if (!(data
= WINECON_Init(hInst
, 0, NULL
, wci
.backend
, nCmdShow
))) return 0;
842 ret
= SetEvent(wci
.event
);
843 if (!ret
) WINE_ERR("SetEvent failed.\n");
845 case from_process_name
:
849 MultiByteToWideChar(CP_ACP
, 0, wci
.ptr
, -1, buffer
, sizeof(buffer
) / sizeof(buffer
[0]));
851 if (!(data
= WINECON_Init(hInst
, GetCurrentProcessId(), buffer
, wci
.backend
, nCmdShow
)))
853 ret
= WINECON_Spawn(data
, buffer
);
856 WINECON_Delete(data
);
857 printf_res(IDS_CMD_LAUNCH_FAILED
, wine_dbgstr_a(wci
.ptr
));
868 WINE_TRACE("calling MainLoop.\n");
869 ret
= data
->fnMainLoop(data
);
872 WINECON_Delete(data
);