Sha256: fc5926ba935531c4984ae0ecbe10f21aeab38f58d8475aff68f87eb200ec8443
Contents?: true
Size: 736 Bytes
Versions: 38
Compression:
Stored size: 736 Bytes
Contents
module RubySMB module Dcerpc module Winreg # This class represents a BaseRegEnumValue Response 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 EnumValueResponse < BinData::Record attr_reader :opnum endian :little 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 ndr_uint32 :error_status def initialize_instance super @opnum = REG_ENUM_VALUE end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems