[pkg-wine-party] [wine] 07/78: kernel32: Add GetConsoleAliasExesLengthA/W stubs.

Jens Reyer jreyer-guest at moszumanska.debian.org
Mon Aug 29 17:39:10 UTC 2016


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

jreyer-guest pushed a commit to branch stretch
in repository wine.

commit 47d5193e1079ce4cba538a288c9cc7e35dbff1c0
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>
    (cherry picked from commit 43637ce9f7b8654934b8bea65cf5de68c182d4f9)
    Signed-off-by: Michael Stefaniuc <mstefani 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 179e14e..874d19c 100644
--- a/dlls/kernel32/console.c
+++ b/dlls/kernel32/console.c
@@ -3203,6 +3203,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 bcbc50ed..bc147c5 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