aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/yexception_ut.h
blob: 01dd288375cebfe7782014ac9630728125bdc971 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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