术语 | findnextstreamw |
释义 | FindNextStreamW 语法: C++ BOOL WINAPI FindNextStreamW( __in HANDLE hFindStream, __out LPVOID lpFindStreamData ); FindNextStreamW功能 继续搜索流因先前调用FindFirstStreamW功能开始。 参数 hFindStream [in] 返回的搜索处理因先前调用FindFirstStreamW功能。 lpFindStreamData [out] 向WIN32_FIND_STREAM_DATA结构,接收关于流信息的指针。 返回值 如果函数成功,返回值为非零。 如果函数失败,返回值是零。为了获得更多错误信息,调用GetLastError。如果没有流可以发现,GetLastError返回ERROR_HANDLE_EOF。 备注 要编译的应用程序使用此函数,定义为0x0501或更高_WIN32_WINNT宏。有关详细信息,请参阅使用Windows头。 要求: client最低支持Vista 最低支持serverWindows服务器2003 HeaderWinBase.h(头文件:winuser.h) LibraryKernel32.lib DLLKernel32.dll 参见 文件管理函数 FindFirstStreamW WIN32_FIND_STREAM_DATA 如果有任何问题和意见,请发送给微软(wsddocfb@microsoft.com) 生成日期:2009年9月3日 ==英文原文==FindNextStreamW Function Continues a stream search started by a previous call to the FindFirstStreamW function. Syntax C++ BOOL WINAPI FindNextStreamW( __in HANDLE hFindStream, __out LPVOID lpFindStreamData ); Parameters hFindStream [in] The search handle returned by a previous call to the FindFirstStreamW function. lpFindStreamData [out] A pointer to the WIN32_FIND_STREAM_DATA structure that receives information about the stream. 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 . If no streams can be found, GetLastError returns ERROR_HANDLE_EOF. Remarks To compile an application that uses this function, define the _WIN32_WINNT macro as 0x0501 or later. For more information, see Using the Windows Headers . Requirements Minimum supported clientWindows Vista Minimum supported serverWindows Server 2003 HeaderWinBase.h (include Windows.h) LibraryKernel32.lib DLLKernel32.dll See Also File Management Functions FindFirstStreamW WIN32_FIND_STREAM_DATA Send comments about this topic to Microsoft Build date: 9/3/2009 ==原始网址==http://msdn.microsoft.com/en-us/library/aa364430(VS.85).aspx\n |
随便看 |
|
windows api函数参考手册包含2258条windows api函数文档,详细介绍nodejs、java、rust调用windows api的方法技巧,是学习windows api编程的入门中文文档。