yexception_ut.h 217 B

1234567891011121314
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. typedef void (*TCallbackFun)(int);
  6. //! just calls callback with parameter @c i
  7. void TestCallback(TCallbackFun f, int i);
  8. #ifdef __cplusplus
  9. }
  10. #endif