tx.h 417 B

1234567891011121314151617181920212223
  1. // #ifndef TC_H
  2. // #define TC_H
  3. // #include <stdarg.h> /* Needed for the definition of va_list */
  4. // #include <stdio.h> /* Needed for the definition of va_list */
  5. // /*
  6. // ** Make sure we can call this stuff from C++.
  7. // */
  8. // #ifdef __cplusplus
  9. // extern "C" {
  10. // #endif
  11. typedef void(*f_ptr)();
  12. int getNumber();
  13. char* getString();
  14. void callback(f_ptr f);
  15. // #ifdef __cplusplus
  16. // }
  17. // #endif
  18. // #endif