Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4951ab64
Commit
4951ab64
authored
Oct 11, 2022
by
Hugh McMaster
Committed by
Alexandre Julliard
Oct 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Add stubs for GetConsoleOriginalTitleA/W().
parent
173ffe50
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
2 deletions
+26
-2
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
console.c
dlls/kernelbase/console.c
+22
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+2
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
4951ab64
...
...
@@ -610,8 +610,8 @@
@ stdcall GetConsoleKeyboardLayoutNameW(ptr)
@ stdcall -import GetConsoleMode(long ptr)
@ stub GetConsoleNlsMode
# @ stub GetConsoleOriginalTitleA
# @ stub GetConsoleOriginalTitleW
@ stdcall -import GetConsoleOriginalTitleA(ptr long)
@ stdcall -import GetConsoleOriginalTitleW(ptr long)
@ stdcall -import GetConsoleOutputCP()
@ stdcall -import GetConsoleProcessList(ptr long)
@ stdcall -import GetConsoleScreenBufferInfo(long ptr)
...
...
dlls/kernelbase/console.c
View file @
4951ab64
...
...
@@ -887,6 +887,28 @@ BOOL WINAPI DECLSPEC_HOTPATCH GetConsoleMode( HANDLE handle, DWORD *mode )
/***********************************************************************
* GetConsoleOriginalTitleA (kernelbase.@)
*/
DWORD
WINAPI
DECLSPEC_HOTPATCH
GetConsoleOriginalTitleA
(
LPSTR
title
,
DWORD
size
)
{
FIXME
(
": (%p, %lu) stub!
\n
"
,
title
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* GetConsoleOriginalTitleW (kernelbase.@)
*/
DWORD
WINAPI
DECLSPEC_HOTPATCH
GetConsoleOriginalTitleW
(
LPWSTR
title
,
DWORD
size
)
{
FIXME
(
": (%p, %lu) stub!
\n
"
,
title
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* GetConsoleOutputCP (kernelbase.@)
*/
UINT
WINAPI
DECLSPEC_HOTPATCH
GetConsoleOutputCP
(
void
)
...
...
dlls/kernelbase/kernelbase.spec
View file @
4951ab64
...
...
@@ -466,6 +466,8 @@
@ stdcall GetConsoleInputExeNameA(long ptr)
@ stdcall GetConsoleInputExeNameW(long ptr)
@ stdcall GetConsoleMode(long ptr)
@ stdcall GetConsoleOriginalTitleA(ptr long)
@ stdcall GetConsoleOriginalTitleW(ptr long)
@ stdcall GetConsoleOutputCP()
@ stdcall GetConsoleProcessList(ptr long)
@ stdcall GetConsoleScreenBufferInfo(long ptr)
...
...
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