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
43637ce9
Commit
43637ce9
authored
Mar 31, 2016
by
Austin English
Committed by
Alexandre Julliard
Apr 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add GetConsoleAliasExesLengthA/W stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c6373260
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
console.c
dlls/kernel32/console.c
+14
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
No files found.
dlls/kernel32/console.c
View file @
43637ce9
...
...
@@ -3207,6 +3207,20 @@ DWORD WINAPI GetConsoleAliasesLengthW(LPWSTR unknown)
return
0
;
}
DWORD
WINAPI
GetConsoleAliasExesLengthA
(
void
)
{
FIXME
(
": stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
DWORD
WINAPI
GetConsoleAliasExesLengthW
(
void
)
{
FIXME
(
": stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
VOID
WINAPI
ExpungeConsoleCommandHistoryA
(
LPCSTR
unknown
)
{
FIXME
(
": (%s) stub!
\n
"
,
debugstr_a
(
unknown
));
...
...
dlls/kernel32/kernel32.spec
View file @
43637ce9
...
...
@@ -582,8 +582,8 @@
@ stdcall GetComputerNameW(ptr ptr)
@ stub GetConsoleAliasA
@ stub GetConsoleAliasExesA
@ st
ub GetConsoleAliasExesLengthA
@ st
ub GetConsoleAliasExesLengthW
@ st
dcall GetConsoleAliasExesLengthA()
@ st
dcall GetConsoleAliasExesLengthW()
@ stub GetConsoleAliasExesW
@ stdcall GetConsoleAliasW(wstr ptr long wstr)
@ stub GetConsoleAliasesA
...
...
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