my_functions.h
void * f1 (int * param);
void * f2 (int * param);
void * f3 (int * param);
void b1(int * param);
void b2(int * param);
void b3(int * param);
我的程序
#include <my_functions.h>
// Typedef my function pointers
typedef void * (*foo)(int*);
typedef void (*bar)(int*);
// Declare the structure that will contain function pointers
typedef struct _my_struct
{
int tag;
foo f;
bar b;
}my_struct;
// Declare and initialize the array of my_struct
my_struct array[] =
{
{1, f1, b1},
{2, f2, b2},
{3, f3, b3}
};
编译器说:
警告:从不兼容的指针类型初始化
我看着:
但是我仍然看不到我错过了什么......
对我来说,在我尝试初始化我的数组时,所有类型和函数都是已知的。
初始化不能在函数之外完成吗?
[编辑]我在 Linux 上,使用 GCC 4.9 的嵌入式版本。