ntSetInformationTransaction 函数 (wdm.h)
ZwSetInformationTransaction 例程设置指定事务的信息。
语法
__kernel_entry NTSYSCALLAPI NTSTATUS NtSetInformationTransaction(
[in] HANDLE TransactionHandle,
[in] TRANSACTION_INFORMATION_CLASS TransactionInformationClass,
[in] PVOID TransactionInformation,
[in] ULONG TransactionInformationLength
);
参数
[in] TransactionHandle
事务对象的句柄,该 句 柄是通过对 ZwCreateTransaction 或 ZwOpenTransaction 的先前调用获取 的。 句柄必须具有对对象的TRANSACTION_SET_INFORMATION访问权限。
[in] TransactionInformationClass
一个TRANSACTION_INFORMATION_CLASS类型的值,该值指定要设置的信息的类型。 该值必须为 TransactionPropertiesInformation。
[in] TransactionInformation
指向调用方分配的缓冲区的指针,该缓冲区包含要设置的信息。 缓冲区的结构类型必须 TRANSACTION_PROPERTIES_INFORMATION。
[in] TransactionInformationLength
TransactionInformation 参数指向的缓冲区的长度(以字节为单位)。
返回值
如果操作成功,ZwSetInformationTransaction 将返回STATUS_SUCCESS。 否则,此例程可能会返回以下值之一:
返回代码 | 说明 |
---|---|
|
TransactionInformationClass 参数的值无效。 |
|
TransactionHandle 参数指定的句柄不是事务对象的句柄。 |
|
对象句柄无效。 |
|
调用方对事务对象没有适当的访问权限。 |
|
TransactionInformationLength 参数的值无效。 |
|
TransactionInformation 缓冲区指定的缓冲区的内容无效。 |
例程可能会返回其他 NTSTATUS 值。
注解
有关 ZwSetInformationTransaction 的详细信息,请参阅 创建事务性客户端。
NtSetInformationTransaction 和 ZwSetInformationTransaction 是同一 Windows Native System Services 例程的两个版本。
对于来自内核模式驱动程序的调用,Windows Native System Services 例程的 NtXxx 和 ZwXxx 版本在处理和解释输入参数的方式上的行为可能有所不同。 有关例程的 NtXxx 和 ZwXxx 版本之间的关系的详细信息,请参阅 使用本机系统服务例程的 Nt 和 Zw 版本。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 在 Windows Vista 和更高版本的操作系统版本中可用。 |
目标平台 | 通用 |
标头 | wdm.h(包括 Wdm.h、Ntddk.h、Ntifs.h) |
Library | NtosKrnl.lib |
DLL | NtosKrnl.exe |
IRQL | PASSIVE_LEVEL |
DDI 符合性规则 | HwStorPortProhibitedDDI、PowerIrpDDis |