Commit de58df0e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wineconsole: Make WINECON_SetHistory{Mode,Size}() static.

parent e7ec428c
......@@ -79,9 +79,7 @@ struct inner_data {
extern void WINECON_Fatal(const char* msg);
extern void WINECON_NotifyWindowChange(struct inner_data* data);
extern int WINECON_GetHistorySize(HANDLE hConIn);
extern BOOL WINECON_SetHistorySize(HANDLE hConIn, int size);
extern int WINECON_GetHistoryMode(HANDLE hConIn);
extern BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode);
extern BOOL WINECON_GetConsoleTitle(HANDLE hConIn, WCHAR* buffer, size_t len);
extern int WINECON_GrabChanges(struct inner_data* data);
extern VOID WINECON_SetConfig(struct inner_data* data,
......
......@@ -124,7 +124,7 @@ int WINECON_GetHistorySize(HANDLE hConIn)
*
*
*/
BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
static BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
{
BOOL ret;
......@@ -163,7 +163,7 @@ int WINECON_GetHistoryMode(HANDLE hConIn)
*
*
*/
BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode)
static BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode)
{
BOOL ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment