网站首页  词典首页

请输入您要查询的函数:

 

术语 writeconsoleinput
释义 WriteConsoleInput
语法:
C++
BOOL WINAPI WriteConsoleInput(
__in HANDLE hConsoleInput,
__in const INPUT_RECORD *lpBuffer,
__in DWORD nLength,
__out LPDWORD lpNumberOfEventsWritten
);
WriteConsoleInput功能
数据直接写入到控制台输入缓冲区。
参数
hConsoleInput [in]
句柄到控制台输入缓冲区。句柄必须有GENERIC_WRITE访问权限。有关更多信息,参见控制台缓冲区安全和访问权限。
lpBuffer [in]
一个一个INPUT_RECORD结构数组的指针包含数据被写入到输入缓冲区。数组的总大小必须小于64K的。
nLength [in]
输入记录的数目要写入。
lpNumberOfEventsWritten [out]
一个变量,它接收的输入记录数实际写入指针。
返回值
如果函数成功,返回值为非零。
如果函数失败,返回值是零。为了获得更多错误信息,调用GetLastError。
备注
WriteConsoleInput放到背后缓冲区中任何悬而未决的事件输入缓冲区输入记录。输入缓冲区的增长动态,必要时举办的许多活动被写入。
此函数使用任何Unicode字符或8位字符从控制台的当前代码页。控制台的代码页默认最初系统的OEM代码页。要更改控制台的代码页,使用SetConsoleCP或SetConsoleOutputCP功能,或使用chcp处长或节能模式选择=命令。
要求:
最低支持:client-Windows 2000专业版
最低支持server-Windows 2000服务器
HeaderWincon.h(头文件:winuser.h)
LibraryKernel32.lib
DLLKernel32.dll
Unicode和ANSI namesWriteConsoleInputW(Unicode)和WriteConsoleInputA(ANSI)的
参见
控制台函数
INPUT_RECORD
低级别控制台输入功能
PeekConsoleInput
ReadConsoleInput
SetConsoleCP
SetConsoleOutputCP
如果有任何问题和意见,请发送给微软(wsddocfb@microsoft.com)
生成日期:2009年8月27日
==英文原文==WriteConsoleInput Function
Writes data directly to the console input buffer.
Syntax
C++
BOOL WINAPI WriteConsoleInput(
__in HANDLE hConsoleInput,
__in const INPUT_RECORD *lpBuffer,
__in DWORD nLength,
__out LPDWORD lpNumberOfEventsWritten
);
Parameters
hConsoleInput [in]
A handle to the console input buffer. The handle must have the GENERIC_WRITE access right. For more information, see Console Buffer Security and Access Rights .
lpBuffer [in]
A pointer to an array of INPUT_RECORD structures that contain data to be written to the input buffer. The total size of the array must be less than 64K.
nLength [in]
The number of input records to be written.
lpNumberOfEventsWritten [out]
A pointer to a variable that receives the number of input records actually written.
Return Value
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 .
Remarks
WriteConsoleInput places input records into the input buffer behind any pending events in the buffer. The input buffer grows dynamically, if necessary, to hold as many events as are written.
This function uses either Unicode characters or 8-bit characters from the console's current code page. The console's code page defaults initially to the system's OEM code page. To change the console's code page, use the SetConsoleCP or SetConsoleOutputCP functions, or use the chcp or mode con cp select= commands.
Requirements
Minimum supported clientWindows 2000 Professional
Minimum supported serverWindows 2000 Server
HeaderWincon.h (include Windows.h)
LibraryKernel32.lib
DLLKernel32.dll
Unicode and ANSI namesWriteConsoleInputW (Unicode) and WriteConsoleInputA (ANSI)
See Also
Console Functions
INPUT_RECORD
Low-Level Console Input Functions
PeekConsoleInput
ReadConsoleInput
SetConsoleCP
SetConsoleOutputCP
Send comments about this topic to Microsoft
Build date: 8/27/2009
==原始网址==http://msdn.microsoft.com/en-us/library/ms687403(VS.85).aspx\n
随便看

 

windows api函数参考手册包含2258条windows api函数文档,详细介绍nodejs、java、rust调用windows api的方法技巧,是学习windows api编程的入门中文文档。

 

Copyright © 2004-2023 Winrtm.com All Rights Reserved
京ICP备2021023879号-40 更新时间:2024/10/6 11:28:20