typedef int AryInt[4];
//定义 AryInt为 含有4个int元素的型数组 类型;
typedef int (*PAryInt)[4];
//定义PAryInt为指向含有4个int元素的数组的 指针类型;
typedef int (_stdcall*PFUNC)(int, int);
//定义一个函数指针类型,该类型变量指向一个函数,该函数有2个int型参数,
且返回值为int型,调用约定为_stdcall标准调用
/*-----------------------未完成-----------------------*/