blob: acf6f27e991cb8bdd66c0666ba02e7b6675c9dbe (
plain) (
tree)
|
|
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*TCallbackFun)(int);
//! just calls callback with parameter @c i
void TestCallback(TCallbackFun f, int i);
#ifdef __cplusplus
}
#endif
|