EA Durbin : kernel32: Add stub implementation of GetConsoleInputExeNameW.

Alexandre Julliard julliard at winehq.org
Tue Nov 13 08:34:51 CST 2007


Module: wine
Branch: master
Commit: 6e6a2a58566e1bbb9287f3fc6d34c1183accae54
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6e6a2a58566e1bbb9287f3fc6d34c1183accae54

Author: EA Durbin <ead1234 at hotmail.com>
Date:   Sun Nov 11 12:26:41 2007 -0600

kernel32: Add stub implementation of GetConsoleInputExeNameW.

---

 dlls/kernel32/console.c     |   10 ++++++++++
 dlls/kernel32/kernel32.spec |    2 +-
 2 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c
index d8b46d1..f77de14 100644
--- a/dlls/kernel32/console.c
+++ b/dlls/kernel32/console.c
@@ -974,6 +974,16 @@ DWORD WINAPI GetConsoleInputExeNameA(DWORD BufferLength, LPSTR lpBuffer)
 }
 
 /***********************************************************************
+ *            GetConsoleInputExeNameW   (KERNEL32.@)
+ */
+DWORD WINAPI GetConsoleInputExeNameW(DWORD BufferLength, LPWSTR lpBuffer)
+{
+    DWORD ret = 0;
+    FIXME( "stub %u %p\n", BufferLength, lpBuffer);
+    return ret;
+}
+
+/***********************************************************************
  *            GetConsoleTitleA   (KERNEL32.@)
  *
  * See GetConsoleTitleW.
diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec
index f996988..c6b0d9c 100644
--- a/dlls/kernel32/kernel32.spec
+++ b/dlls/kernel32/kernel32.spec
@@ -458,7 +458,7 @@
 @ stub GetConsoleFontSize
 @ stub GetConsoleHardwareState
 @ stdcall GetConsoleInputExeNameA(long ptr)
-@ stub GetConsoleInputExeNameW
+@ stdcall GetConsoleInputExeNameW(long ptr)
 @ stdcall GetConsoleInputWaitHandle()
 @ stub GetConsoleKeyboardLayoutNameA
 @ stub GetConsoleKeyboardLayoutNameW




More information about the wine-cvs mailing list