//FARPROC typedef int (*FARPROC)(void)
typedef int (*FARPROC)(void); //FARPROC是个系统定义的类型,它是函数指针类型 ,无参数,返回为int. //你不能用这个类型
int (*Add)(int );