Guest User

Untitled

a guest
Jun 2nd, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. void TestJumper(int *a_Int, float *a_Float)
  2. {
  3.     *a_Int += 5;
  4.     StartHere();
  5.     (*a_Int)++;
  6. }
  7.  
  8. int main(void)
  9. {
  10.     JmpFunction t_Jump = JmpFunction(TestJumper);
  11.     t_Jump.AddToArgumentList((int)4);
  12.     t_Jump.AddToArgumentList((float)5.2f);
  13.     t_Jump();
  14.     t_Jump();
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment