in a demo tutorial example program i downloaded it has a included .h file and then in the src code it has funtions like

VB Code:
  1. int thedot'h'file::functionname(arguments)
  2. {
  3.         code;
  4. }

i tried calling these functions with

VB Code:
  1. functionname(arguments);

but it didnt work. how can i access these functions?