[pkg-wine-party] [wine] 17/271: kernel32: Add GetConsoleAliasExesLengthA/W stubs.

Michael Gilbert mgilbert at moszumanska.debian.org
Sat Apr 16 02:15:35 UTC 2016


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a commit to branch master
in repository wine.

commit 43637ce9f7b8654934b8bea65cf5de68c182d4f9
Author: Austin English <austinenglish at gmail.com>
Date:   Thu Mar 31 21:38:36 2016 -0500

    kernel32: Add GetConsoleAliasExesLengthA/W stubs.
    
    Signed-off-by: Austin English <austinenglish at gmail.com>
    Signed-off-by: Alexandre Julliard <julliard at winehq.org>
---
 dlls/kernel32/console.c     | 14 ++++++++++++++
 dlls/kernel32/kernel32.spec |  4 ++--
 2 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c
index 57c0b36..60e38bc 100644
--- a/dlls/kernel32/console.c
+++ b/dlls/kernel32/console.c
@@ -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));
diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec
index d606d9b..3452360 100644
--- a/dlls/kernel32/kernel32.spec
+++ b/dlls/kernel32/kernel32.spec
@@ -582,8 +582,8 @@
 @ stdcall GetComputerNameW(ptr ptr)
 @ stub GetConsoleAliasA
 @ stub GetConsoleAliasExesA
-@ stub GetConsoleAliasExesLengthA
-@ stub GetConsoleAliasExesLengthW
+@ stdcall GetConsoleAliasExesLengthA()
+@ stdcall GetConsoleAliasExesLengthW()
 @ stub GetConsoleAliasExesW
 @ stdcall GetConsoleAliasW(wstr ptr long wstr)
 @ stub GetConsoleAliasesA

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git



More information about the pkg-wine-party mailing list