From 0a6665bfefefacef4821177b09603d2dbf30be8f Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 26 Jan 2009 12:51:37 +0100 Subject: [PATCH] wineconsole: WINECON_GetHistory{Mode,Size}() are unused so remove them. --- programs/wineconsole/wineconsole.c | 37 ------------------------------ 1 file changed, 37 deletions(-) diff --git a/programs/wineconsole/wineconsole.c b/programs/wineconsole/wineconsole.c index 1c146df6bd2..0e57176b38b 100644 --- a/programs/wineconsole/wineconsole.c +++ b/programs/wineconsole/wineconsole.c @@ -101,24 +101,6 @@ void WINECON_NotifyWindowChange(struct inner_data* data) SERVER_END_REQ; } -/****************************************************************** - * 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 *