函数参考


_WinAPI_SetFRBuffer

Sets the size of the internal buffer that used the _WinAPI_FindTextDlg() and _WinAPI_ReplaceTextDlg() functions.

#Include <WinAPIEx.au3>
_WinAPI_SetFRBuffer ( $iChars )

参数

$iChars The size, in TCHARs, of the internal buffer. The buffer should be at least 80 characters long.
The default buffer size is 16384 wide characters (32 KB).

返回值

成功: 返回 1.
失败: 返回 0 并设置 @error 标志为非 0 值.

注意/说明

This function does not initialize the buffer, just sets its size. Actually, this buffer is initialized only by
_WinAPI_FindTextDlg() and _WinAPI_ReplaceTextDlg() functions. The _WinAPI_SetFRBuffer() must be called before
using the _WinAPI_FindTextDlg() or _WinAPI_ReplaceTextDlg().

You can destroy the internal buffer by calling the _WinAPI_FlushFRBuffer() function.

相关

详情参考

None