Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Allows modification of the test handle with locking.
Syntax
BOOL TestQueryData(
HANDLE test,
unsigned int options,
unsigned int knownDataSequenceId,
_Out_ TestInfo* result);
Parameters
test
The test handle returned from TestCreate or TestOpen.
options
The test query options. This parameter can be set to the following values.
| Value | Description |
|---|---|
| 0 | Default option. |
| 1 | Acquires lock to protect modifications until unlock. |
| 2 | Close handle and mark as complete. |
| 3 | Close handle and mark complete if this is the final handle. |
| 4 | Set when the caller already owns the lock. |
knownDataSequenceId
The last known dataSequenceId of the result. Allows optimization from caller by doing less work when this is the same on subsequent calls.
result [out]
A TestInfo structure containing information about the test.
Return value
True if the operation was successful.
Remarks
This function has no associated import library or header file; it must be invoked using the LoadLibrary and GetProcAddress functions.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows Build 22000 |
| Minimum supported server | Windows Server 2022 |
| Header | None |
| DLL | kernelbase.dll |