コード例 #1
0
ファイル: Pointer.cs プロジェクト: Yoshi-Exeler/ManagedMemory
 public void Update()
 {
     destination = new Address(callback.ReadInt64(source));
 }
コード例 #2
0
 public long GetAsInt64()
 {
     return(callback.ReadInt64(address));
 }
コード例 #3
0
ファイル: Pointer.cs プロジェクト: Yoshi-Exeler/ManagedMemory
 public Pointer(Address src, ProcessInterface callback)
 {
     this.callback = callback;
     source        = src;
     destination   = new Address(callback.ReadInt64(source));
 }