title | description | author | ms.author | ms.topic | keywords | f1_keywords | MS-HAID | MSHAttr | ms.assetid | topic_type | api_name | api_location | api_type | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
GetConsoleAliasExes function |
Retrieves the names of all executable files with console aliases defined. |
miniksa |
miniksa |
article |
console, character mode applications, command line applications, terminal applications, console api |
|
|
|
c229de09-cfa6-4829-9c9a-8ff63500eaf4 |
|
|
|
|
[!INCLUDE not-recommended-banner]
Retrieves the names of all executable files with console aliases defined.
DWORD WINAPI GetConsoleAliasExes(
_Out_ LPTSTR lpExeNameBuffer,
_In_ DWORD ExeNameBufferLength
);
lpExeNameBuffer [out]
A pointer to a buffer that receives the names of the executable files.
ExeNameBufferLength [in]
The size of the buffer pointed to by lpExeNameBuffer, in bytes.
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
To determine the required size for the lpExeNameBuffer buffer, use the GetConsoleAliasExesLength function.
To compile an application that uses this function, define _WIN32_WINNT as 0x0501 or later. For more information, see Using the Windows Headers.
[!INCLUDE no-vt-equiv-shell-banner]
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | ConsoleApi3.h (via WinCon.h, include Windows.h) |
Library | Kernel32.lib |
DLL | Kernel32.dll |
Unicode and ANSI names | GetConsoleAliasExesW (Unicode) and GetConsoleAliasExesA (ANSI) |