Commit 4a0833c2 authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

kernel32: Add stub implementation of GetConsoleInputExeNameA.

parent fad20c9c
......@@ -963,6 +963,15 @@ BOOL WINAPI SetConsoleTitleA( LPCSTR title )
return ret;
}
/***********************************************************************
* GetConsoleInputExeNameA (KERNEL32.@)
*/
DWORD WINAPI GetConsoleInputExeNameA(DWORD BufferLength, LPSTR lpBuffer)
{
DWORD ret = 0;
FIXME( "stub %u %p\n", BufferLength, lpBuffer);
return ret;
}
/***********************************************************************
* GetConsoleTitleA (KERNEL32.@)
......
......@@ -457,7 +457,7 @@
@ stub GetConsoleFontInfo
@ stub GetConsoleFontSize
@ stub GetConsoleHardwareState
@ stub GetConsoleInputExeNameA
@ stdcall GetConsoleInputExeNameA(long ptr)
@ stub GetConsoleInputExeNameW
@ stdcall GetConsoleInputWaitHandle()
@ stub GetConsoleKeyboardLayoutNameA
......
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