The SetStdHandle function is used to set the handle for the standard input, standard output, or standard error device. The specified handle can be used by subsequent calls to the GetStdHandle function to refer to the input, output, or error device.
BOOL SetStdHandle(
DWORD nStdHandle, |
// input, output, or error device |
HANDLE hHandle |
// handle to be a standard handle |
); |
Value |
Meaning |
STD_INPUT_HANDLE |
Standard input handle |
STD_OUTPUT_HANDLE |
Standard output handle |
STD_ERROR_HANDLE |
Standard error handle |
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.
The standard handles of a process may have been redirected by a call to SetStdHandle, in which case GetStdHandle will return the redirected handle. If the standard handles have been redirected, you can specify the CONIN$ value in a call to the CreateFile function to get a handle of a console’s input buffer. Similarly, you can specify the CONOUT$ value to get a handle of the console’s active screen buffer.
file: /Techref/os/win/api/win32/func/src/f82.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 22:44,
18.118.121.23:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f82.htm"> SetStdHandle</A> |
Did you find what you needed? |