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
0a6665bf
Commit
0a6665bf
authored
Jan 26, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: WINECON_GetHistory{Mode,Size}() are unused so remove them.
parent
8be5798e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
37 deletions
+0
-37
wineconsole.c
programs/wineconsole/wineconsole.c
+0
-37
No files found.
programs/wineconsole/wineconsole.c
View file @
0a6665bf
...
...
@@ -102,24 +102,6 @@ void WINECON_NotifyWindowChange(struct inner_data* data)
}
/******************************************************************
* WINECON_GetHistorySize
*
*
*/
int
WINECON_GetHistorySize
(
HANDLE
hConIn
)
{
int
ret
=
0
;
SERVER_START_REQ
(
get_console_input_info
)
{
req
->
handle
=
wine_server_obj_handle
(
hConIn
);
if
(
!
wine_server_call_err
(
req
))
ret
=
reply
->
history_size
;
}
SERVER_END_REQ
;
return
ret
;
}
/******************************************************************
* WINECON_SetHistorySize
*
*
...
...
@@ -139,25 +121,6 @@ static BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
return
ret
;
}
/******************************************************************
* WINECON_GetHistoryMode
*
*
*/
int
WINECON_GetHistoryMode
(
HANDLE
hConIn
)
{
int
ret
=
0
;
SERVER_START_REQ
(
get_console_input_info
)
{
req
->
handle
=
wine_server_obj_handle
(
hConIn
);
if
(
!
wine_server_call_err
(
req
))
ret
=
reply
->
history_mode
;
}
SERVER_END_REQ
;
return
ret
;
}
/******************************************************************
* WINECON_SetHistoryMode
*
...
...
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