Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
eff42369
Commit
eff42369
authored
Jul 07, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: Use IOCTL_CONDRV_GET_INPUT_INFO in WINECON_GetServerConfig.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
33190b69
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
11 deletions
+15
-11
condrv.h
include/wine/condrv.h
+3
-0
wineconsole.c
programs/wineconsole/wineconsole.c
+8
-10
console.c
server/console.c
+4
-1
No files found.
include/wine/condrv.h
View file @
eff42369
...
...
@@ -31,6 +31,9 @@
/* IOCTL_CONDRV_GET_INPUT_INFO result */
struct
condrv_input_info
{
unsigned
int
history_mode
;
/* whether we duplicate lines in history */
unsigned
int
history_size
;
/* number of lines in history */
unsigned
int
edition_mode
;
/* index to the edition mode flavors */
unsigned
int
input_count
;
/* number of available input records */
};
...
...
programs/wineconsole/wineconsole.c
View file @
eff42369
...
...
@@ -27,6 +27,7 @@
#include "winecon_private.h"
#include "winnls.h"
#include "winuser.h"
#include "wine/condrv.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
@@ -603,19 +604,16 @@ static void WINECON_Delete(struct inner_data* data)
*/
static
BOOL
WINECON_GetServerConfig
(
struct
inner_data
*
data
)
{
struct
condrv_input_info
input_info
;
BOOL
ret
;
DWORD
mode
;
SERVER_START_REQ
(
get_console_input_info
)
{
req
->
handle
=
wine_server_obj_handle
(
data
->
hConIn
);
ret
=
!
wine_server_call_err
(
req
);
data
->
curcfg
.
history_size
=
reply
->
history_size
;
data
->
curcfg
.
history_nodup
=
reply
->
history_mode
;
data
->
curcfg
.
edition_mode
=
reply
->
edition_mode
;
}
SERVER_END_REQ
;
if
(
!
ret
)
return
FALSE
;
if
(
!
DeviceIoControl
(
data
->
hConIn
,
IOCTL_CONDRV_GET_INPUT_INFO
,
NULL
,
0
,
&
input_info
,
sizeof
(
input_info
),
NULL
,
NULL
))
return
FALSE
;
data
->
curcfg
.
history_size
=
input_info
.
history_size
;
data
->
curcfg
.
history_nodup
=
input_info
.
history_mode
;
data
->
curcfg
.
edition_mode
=
input_info
.
edition_mode
;
GetConsoleMode
(
data
->
hConIn
,
&
mode
);
data
->
curcfg
.
insert_mode
=
(
mode
&
(
ENABLE_INSERT_MODE
|
ENABLE_EXTENDED_FLAGS
))
==
...
...
server/console.c
View file @
eff42369
...
...
@@ -1554,7 +1554,10 @@ static int console_ioctl( struct fd *fd, ioctl_code_t code, struct async *async
set_error
(
STATUS_INVALID_PARAMETER
);
return
0
;
}
info
.
input_count
=
console
->
recnum
;
info
.
history_mode
=
console
->
history_mode
;
info
.
history_size
=
console
->
history_size
;
info
.
edition_mode
=
console
->
edition_mode
;
info
.
input_count
=
console
->
recnum
;
return
set_reply_data
(
&
info
,
sizeof
(
info
)
)
!=
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment