Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e7ec428c
Commit
e7ec428c
authored
Jan 20, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: Make some functions static.
parent
cf92ee98
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
5 deletions
+2
-5
user.c
programs/wineconsole/user.c
+1
-1
winecon_private.h
programs/wineconsole/winecon_private.h
+0
-1
winecon_user.h
programs/wineconsole/winecon_user.h
+0
-2
wineconsole.c
programs/wineconsole/wineconsole.c
+1
-1
No files found.
programs/wineconsole/user.c
View file @
e7ec428c
...
...
@@ -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
&&
...
...
programs/wineconsole/winecon_private.h
View file @
e7ec428c
...
...
@@ -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
);
...
...
programs/wineconsole/winecon_user.h
View file @
e7ec428c
...
...
@@ -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
,
...
...
programs/wineconsole/wineconsole.c
View file @
e7ec428c
...
...
@@ -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
)
{
...
...
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