Struct with pointer to a function
- by user354021
Hello,
In a C struct I have defined a function pointer as follows:
typedef struct _sequence_t
{
const int seq[3];
typedef void (* callbackPtr)();
} sequence_t;
I want to initialize a var of that type globally with:
sequence_t sequences[] = {
{ { 0, 1, 2 }, toggleArmament },
};
And I keep getting error telling me that there are too many initializers. How to work it out?