Module: Ms::BinaryResources

Defined in:
lib/ms/binary/resources/reader.rb,
lib/ms/binary/resources/version.rb,
lib/ms/binary/resources/constants.rb

Defined Under Namespace

Classes: Reader

Constant Summary collapse

VERSION =
'0.1.2'
MAGIC_NUMBER =
0xBEEFCACE
RESOURCE_TYPES =
{
  null: 0,
  string: 1,
  bool: 2,
  char: 3,
  byte: 4,
  sbyte: 5,
  int16: 6,
  uint16: 7,
  int32: 8,
  uint32: 9,
  int64: 10,
  uint64: 11,
  single: 12,
  double: 13,
  decimal: 14,
  datetime: 15,
  timespan: 16,
  bytearray: 32,
  stream: 33,
  fistcustom: 64
}