Sha256: b97f2a2e2c4a38dc92543560f546c4625771c6a7472b7dfa8492cd70a1df8bb1
Contents?: true
Size: 813 Bytes
Versions: 38
Compression:
Stored size: 813 Bytes
Contents
module RubySMB module Dcerpc module Winreg class RpcHkey < Ndr::NdrContextHandle; end # This class represents a BaseRegEnumValue Request Packet as defined in # [3.1.5.11 BaseRegEnumValue (Opnum 10)](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rrp/56e99ef3-05dc-4f24-bcf5-9cff00412945) class EnumValueRequest < BinData::Record attr_reader :opnum endian :little rpc_hkey :hkey ndr_uint32 :dw_index rrp_unicode_string :lp_value_name ndr_uint32_ptr :lp_type ndr_byte_array_ptr :lp_data ndr_uint32_ptr :lpcb_data ndr_uint32_ptr :lpcb_len def initialize_instance super @opnum = REG_ENUM_VALUE end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems