blob: 93b980e6f43f55de7bb7db8128d2a5f5317a542f [file] [log] [blame]
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
typedef void (*my_fun_t)(int, int, int, int,
int, int, int, int,
int, int, int, int,
int, int, int, int);
struct Foo {
my_fun_t callback;
};
typedef void (*my_fun2_t)(int, int, int, int,
int, int, int, int,
int, int, int, int);
struct Bar {
my_fun2_t callback;
};