wineconsole: Make some functions static.
This commit is contained in:
parent
cf92ee98be
commit
e7ec428c47
|
@ -318,7 +318,7 @@ void WCUSER_DumpTextMetric(const TEXTMETRIC* tm, DWORD ft)
|
|||
*
|
||||
*
|
||||
*/
|
||||
BOOL WCUSER_AreFontsEqual(const struct config_data* config, const LOGFONT* lf)
|
||||
static BOOL WCUSER_AreFontsEqual(const struct config_data* config, const LOGFONT* lf)
|
||||
{
|
||||
return lf->lfHeight == config->cell_height &&
|
||||
lf->lfWeight == config->font_weight &&
|
||||
|
|
|
@ -83,7 +83,6 @@ 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 void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm);
|
||||
extern int WINECON_GrabChanges(struct inner_data* data);
|
||||
extern VOID WINECON_SetConfig(struct inner_data* data,
|
||||
const struct config_data* cfg);
|
||||
|
|
|
@ -48,8 +48,6 @@ extern BOOL WCUSER_GetProperties(struct inner_data*, BOOL);
|
|||
extern BOOL WCUSER_ValidateFont(const struct inner_data* data, const LOGFONT* lf);
|
||||
extern BOOL WCUSER_ValidateFontMetric(const struct inner_data* data,
|
||||
const TEXTMETRIC* tm, DWORD fontType);
|
||||
extern BOOL WCUSER_AreFontsEqual(const struct config_data* config,
|
||||
const LOGFONT* lf);
|
||||
extern HFONT WCUSER_CopyFont(struct config_data* config, HWND hWnd, const LOGFONT* lf,
|
||||
LONG* el);
|
||||
extern void WCUSER_FillLogFont(LOGFONT* lf, const WCHAR* name,
|
||||
|
|
|
@ -64,7 +64,7 @@ static void WINECON_Usage(void)
|
|||
*
|
||||
* updates the local copy of cells (band to update)
|
||||
*/
|
||||
void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm)
|
||||
static void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm)
|
||||
{
|
||||
SERVER_START_REQ( read_console_output )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue