Theres a simplified sample of what i want to do:

VB Code:
  1. 'Say i used the GetProcAddress() APi to get the handle for ProcToCall
  2.  
  3. Public Function ProcToCall(intValue as Integer) as Integer
  4. '//code doesnt matter
  5. End Function
  6.  
  7. Public Function DifferenceProc()
  8.  
  9. 'How can I call ProcToCall Here?
  10.  
  11. End Function