Advertisement
quantumech

Untitled

Apr 22nd, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module.onRuntimeInitialized = function()
  2. {
  3.     // Get memory address of func()
  4.     var funcPtr = addFunction(func, 'v');
  5.  
  6.     // Invoke C method that calls function pointer
  7.     Module._callFuncPtr(funcPtr);
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement