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

This commit is contained in:
Francois Gouget 2009-01-20 09:16:20 +01:00 committed by Alexandre Julliard
parent e7ec428c47
commit de58df0e8d
2 changed files with 2 additions and 4 deletions

View file

@ -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,

View file

@ -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;