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
7c928620
Commit
7c928620
authored
Nov 02, 2015
by
Austin English
Committed by
Alexandre Julliard
Nov 03, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add SetConsoleKeyShortcuts stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ddb47a13
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
console.c
dlls/kernel32/console.c
+9
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
No files found.
dlls/kernel32/console.c
View file @
7c928620
...
@@ -3239,6 +3239,15 @@ DWORD WINAPI GetNumberOfConsoleFonts(void)
...
@@ -3239,6 +3239,15 @@ DWORD WINAPI GetNumberOfConsoleFonts(void)
return
1
;
return
1
;
}
}
BOOL
WINAPI
SetConsoleKeyShortcuts
(
BOOL
set
,
BYTE
keys
,
VOID
*
a
,
DWORD
b
)
{
FIXME
(
": (%u %u %p %u) stub!
\n
"
,
set
,
keys
,
a
,
b
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOL
WINAPI
GetCurrentConsoleFont
(
HANDLE
hConsole
,
BOOL
maxwindow
,
LPCONSOLE_FONT_INFO
fontinfo
)
BOOL
WINAPI
GetCurrentConsoleFont
(
HANDLE
hConsole
,
BOOL
maxwindow
,
LPCONSOLE_FONT_INFO
fontinfo
)
{
{
BOOL
ret
;
BOOL
ret
;
...
...
dlls/kernel32/kernel32.spec
View file @
7c928620
...
@@ -1350,7 +1350,7 @@
...
@@ -1350,7 +1350,7 @@
@ stdcall SetConsoleIcon(ptr)
@ stdcall SetConsoleIcon(ptr)
@ stdcall SetConsoleInputExeNameA(ptr)
@ stdcall SetConsoleInputExeNameA(ptr)
@ stdcall SetConsoleInputExeNameW(ptr)
@ stdcall SetConsoleInputExeNameW(ptr)
@ st
ub SetConsoleKeyShortcuts
@ st
dcall SetConsoleKeyShortcuts(long long ptr long)
@ stub SetConsoleLocalEUDC
@ stub SetConsoleLocalEUDC
@ stub SetConsoleMaximumWindowSize
@ stub SetConsoleMaximumWindowSize
@ stub SetConsoleMenuClose
@ stub SetConsoleMenuClose
...
...
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