111
This commit is contained in:
@@ -29,6 +29,17 @@ class NativePointer extends Base_C_Object {
|
||||
}
|
||||
}
|
||||
|
||||
function Output(Size) {
|
||||
local Buf = Sq_Point2Blob(this.C_Object, Size);
|
||||
local Str = "[";
|
||||
foreach(Value in Buf) {
|
||||
Str = format("%s%02X", Str, Value);
|
||||
Str += ",";
|
||||
}
|
||||
Str += "]";
|
||||
print(Str);
|
||||
}
|
||||
|
||||
function add(intoffset) {
|
||||
this.C_Object = Sq_PointerOperation(this.C_Object, intoffset, "+");
|
||||
return this;
|
||||
|
||||
Reference in New Issue
Block a user