Kernel32FindNextStreamW Method
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, ExactSpelling = true,
SetLastError = true)]
public static bool FindNextStreamW(
SafeFindHandle findFile,
FindStreamData findStreamData
)
<DllImportAttribute("Kernel32.dll", CharSet := CharSet.Auto, ExactSpelling := true,
SetLastError := true>]
Public Shared Function FindNextStreamW (
findFile As SafeFindHandle,
<OutAttribute> findStreamData As FindStreamData
) As Boolean
Dim findFile As SafeFindHandle
Dim findStreamData As FindStreamData
Dim returnValue As Boolean
returnValue = Kernel32.FindNextStreamW(findFile,
findStreamData)
public:
[DllImportAttribute(L"Kernel32.dll", CharSet = CharSet::Auto, ExactSpelling = true,
SetLastError = true)]
static bool FindNextStreamW(
SafeFindHandle^ findFile,
[InAttribute] [OutAttribute] FindStreamData findStreamData
)
[<DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, ExactSpelling = true,
SetLastError = true)>]
static member FindNextStreamW :
findFile : SafeFindHandle *
findStreamData : FindStreamData byref -> bool
No code example is currently available or this language may not be supported.
- findFile SafeFindHandle
-
The search handle returned by a previous call to the FindFirstStreamW(String, FindStreamInfoLevels, FindStreamData, UInt32) function.
- findStreamData FindStreamData
-
A pointer to the FindStreamData structure that receives information about the stream.
Boolean
If the function succeeds, the return value is
.
If the function fails, the return value is
.
To get extended error information, call
GetLastWin32Error.
If no more streams can be found,
GetLastWin32Error returns
ERROR_HANDLE_EOF (38).