gamedata: implement GetMemSig (#1345)

This commit is contained in:
Scags
2020-10-02 16:40:13 -07:00
committed by GitHub
parent 6fd9d1ce11
commit 589d6df75d
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -113,6 +113,12 @@ methodmap GameData < Handle
// @param name Name of the property to find.
// @return An address calculated on success, or 0 on failure.
public native Address GetAddress(const char[] name);
// Returns a function address calculated from a signature.
//
// @param name Name of the property to find.
// @return An address calculated on success, or 0 on failure.
public native Address GetMemSig(const char[] name);
};
/**