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
1c843d39
Commit
1c843d39
authored
Aug 03, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Add missing consts to ScrollConsoleScreenBuffer declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e6d9aaeb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
console.c
dlls/kernelbase/console.c
+5
-5
wincon.h
include/wincon.h
+2
-2
No files found.
dlls/kernelbase/console.c
View file @
1c843d39
...
...
@@ -972,8 +972,8 @@ BOOL WINAPI DECLSPEC_HOTPATCH ReadConsoleOutputW( HANDLE handle, CHAR_INFO *buff
/******************************************************************************
* ScrollConsoleScreenBufferA (kernelbase.@)
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
ScrollConsoleScreenBufferA
(
HANDLE
handle
,
SMALL_RECT
*
scroll
,
SMALL_RECT
*
clip
,
COORD
origin
,
CHAR_INFO
*
fill
)
BOOL
WINAPI
DECLSPEC_HOTPATCH
ScrollConsoleScreenBufferA
(
HANDLE
handle
,
const
SMALL_RECT
*
scroll
,
const
SMALL_RECT
*
clip
,
COORD
origin
,
const
CHAR_INFO
*
fill
)
{
CHAR_INFO
ciW
;
...
...
@@ -987,9 +987,9 @@ BOOL WINAPI DECLSPEC_HOTPATCH ScrollConsoleScreenBufferA( HANDLE handle, SMALL_R
/******************************************************************************
* ScrollConsoleScreenBufferW (kernelbase.@)
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
ScrollConsoleScreenBufferW
(
HANDLE
handle
,
SMALL_RECT
*
scroll
,
SMALL_RECT
*
clip_rect
,
COORD
origin
,
CHAR_INFO
*
fill
)
BOOL
WINAPI
DECLSPEC_HOTPATCH
ScrollConsoleScreenBufferW
(
HANDLE
handle
,
const
SMALL_RECT
*
scroll
,
const
SMALL_RECT
*
clip_rect
,
COORD
origin
,
const
CHAR_INFO
*
fill
)
{
struct
condrv_scroll_params
params
;
...
...
include/wincon.h
View file @
1c843d39
...
...
@@ -374,8 +374,8 @@ WINBASEAPI BOOL WINAPI ReadConsoleOutputAttribute( HANDLE,LPWORD,DWORD,COORD,L
WINBASEAPI
BOOL
WINAPI
ReadConsoleOutputCharacterA
(
HANDLE
,
LPSTR
,
DWORD
,
COORD
,
LPDWORD
);
WINBASEAPI
BOOL
WINAPI
ReadConsoleOutputCharacterW
(
HANDLE
,
LPWSTR
,
DWORD
,
COORD
,
LPDWORD
);
#define ReadConsoleOutputCharacter WINELIB_NAME_AW(ReadConsoleOutputCharacter)
WINBASEAPI
BOOL
WINAPI
ScrollConsoleScreenBufferA
(
HANDLE
,
LPSMALL_RECT
,
LPSMALL_RECT
,
COORD
,
LPCHAR_INFO
);
WINBASEAPI
BOOL
WINAPI
ScrollConsoleScreenBufferW
(
HANDLE
,
LPSMALL_RECT
,
LPSMALL_RECT
,
COORD
,
LPCHAR_INFO
);
WINBASEAPI
BOOL
WINAPI
ScrollConsoleScreenBufferA
(
HANDLE
,
const
SMALL_RECT
*
,
const
SMALL_RECT
*
,
COORD
,
const
CHAR_INFO
*
);
WINBASEAPI
BOOL
WINAPI
ScrollConsoleScreenBufferW
(
HANDLE
,
const
SMALL_RECT
*
,
const
SMALL_RECT
*
com
,
COORD
,
const
CHAR_INFO
*
);
#define ScrollConsoleScreenBuffer WINELIB_NAME_AW(ScrollConsoleScreenBuffer)
WINBASEAPI
BOOL
WINAPI
SetConsoleActiveScreenBuffer
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
SetConsoleCP
(
UINT
);
...
...
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