Commit 6e6a2a58 authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

kernel32: Add stub implementation of GetConsoleInputExeNameW.

parent 4a0833c2
...@@ -974,6 +974,16 @@ DWORD WINAPI GetConsoleInputExeNameA(DWORD BufferLength, LPSTR lpBuffer) ...@@ -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.@) * GetConsoleTitleA (KERNEL32.@)
* *
* See GetConsoleTitleW. * See GetConsoleTitleW.
......
...@@ -458,7 +458,7 @@ ...@@ -458,7 +458,7 @@
@ stub GetConsoleFontSize @ stub GetConsoleFontSize
@ stub GetConsoleHardwareState @ stub GetConsoleHardwareState
@ stdcall GetConsoleInputExeNameA(long ptr) @ stdcall GetConsoleInputExeNameA(long ptr)
@ stub GetConsoleInputExeNameW @ stdcall GetConsoleInputExeNameW(long ptr)
@ stdcall GetConsoleInputWaitHandle() @ stdcall GetConsoleInputWaitHandle()
@ stub GetConsoleKeyboardLayoutNameA @ stub GetConsoleKeyboardLayoutNameA
@ stub GetConsoleKeyboardLayoutNameW @ stub GetConsoleKeyboardLayoutNameW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment