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
637e2000
Commit
637e2000
authored
May 30, 2000
by
Ulrich Czekalla
Committed by
Alexandre Julliard
May 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for SetConsoleOutputCP.
parent
35201ffc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
kernel32.spec
relay32/kernel32.spec
+1
-1
console.c
win32/console.c
+17
-0
No files found.
relay32/kernel32.spec
View file @
637e2000
...
...
@@ -644,7 +644,7 @@ import ntdll.dll
626 stdcall SetConsoleCursorInfo(long ptr) SetConsoleCursorInfo
627 stdcall SetConsoleCursorPosition(long long) SetConsoleCursorPosition
628 stdcall SetConsoleMode(long long) SetConsoleMode
629 st
ub
SetConsoleOutputCP
629 st
dcall SetConsoleOutputCP(long)
SetConsoleOutputCP
630 stdcall SetConsoleScreenBufferSize(long long) SetConsoleScreenBufferSize
631 stdcall SetConsoleTextAttribute(long long) SetConsoleTextAttribute
632 stdcall SetConsoleTitleA(str) SetConsoleTitleA
...
...
win32/console.c
View file @
637e2000
...
...
@@ -665,6 +665,23 @@ BOOL WINAPI SetConsoleMode( HANDLE hcon, DWORD mode )
}
/******************************************************************************
* SetConsoleOutputCP [KERNEL32.629] Set the output codepage used by the console
*
* PARAMS
* cp [I] code page to set
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*/
BOOL
WINAPI
SetConsoleOutputCP
(
UINT
cp
)
{
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
/***********************************************************************
* GetConsoleTitleA (KERNEL32.191)
*/
...
...
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