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
de58df0e
Commit
de58df0e
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 WINECON_SetHistory{Mode,Size}() static.
parent
e7ec428c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
winecon_private.h
programs/wineconsole/winecon_private.h
+0
-2
wineconsole.c
programs/wineconsole/wineconsole.c
+2
-2
No files found.
programs/wineconsole/winecon_private.h
View file @
de58df0e
...
...
@@ -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
,
...
...
programs/wineconsole/wineconsole.c
View file @
de58df0e
...
...
@@ -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
;
...
...
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