MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / SetDWORDValue

Method SetDWORDValue

KernelLibrary/RegistryKey.cpp:85–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85NTSTATUS RegistryKey::SetDWORDValue(PUNICODE_STRING name, const ULONG value) {
86 return ZwSetValueKey(_hKey, name, 0, REG_DWORD, (PVOID)&value, sizeof(value));
87}
88
89NTSTATUS RegistryKey::SetQWORDValue(PUNICODE_STRING name, const ULONGLONG value) {
90 return ZwSetValueKey(_hKey, name, 0, REG_QWORD, (PVOID)&value, sizeof(value));

Callers 1

InitMiniFilterFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected