Help! How to hook void

BrokeBroky

Platinian
internal System.Void OnPurchaseSuccessResult(enum InAppPurchasesManager.AllInAppPurchases inAppPurchaseName, enum InAppPurchasesManager.PurchaseResult purchaseResult); // 0xCB58D4
 
void is just the return type—it doesn't change how a function is referenced. The important part is identifying the correct function signature and calling convention. If you're having trouble, sharing more context about what framework or engine this is from would help people explain the declaration.
 
Back
Top Bottom