Exemplo n.º 1
0
 protected MemoryWatcher(DeepPointer pointer)
 {
     DeepPtr    = pointer;
     AddrType   = AddressType.DeepPointer;
     Enabled    = true;
     FailAction = ReadFailAction.DontUpdate;
 }
Exemplo n.º 2
0
 public ValuePointer(string module, Int64 base_, params Int64[] offsets)
 {
     this.pointer = new DeepPointer(module, base_, offsets);
 }
Exemplo n.º 3
0
 public ValuePointer(DeepPointer pointer)
 {
     this.pointer = pointer;
 }
Exemplo n.º 4
0
 public StringWatcher(DeepPointer pointer, int numBytes)
     : this(pointer, ReadStringType.AutoDetect, numBytes)
 {
 }
Exemplo n.º 5
0
 public StringWatcher(DeepPointer pointer, ReadStringType type, int numBytes)
     : base(pointer)
 {
     _stringType = type;
     _numBytes   = numBytes;
 }