VFP调用外部函数问题
VFP调用外部API,有函数定义如下:long __stdcall GetPersonMsgA(PPERSONINFOA pInfo, const char* pszImageFile)
其中
typedef struct _personinfoa
{
char name[32];
char sex[4];
char nation[20];
char birthday[12];
char address[72];
char cardId[20];
char police[32];
char validStart[12];
char validEnd[12];
char sexCode[4];
char nationCode[4];
char appendMsg[72];
}PERSONINFOA,*PPERSONINFOA;
在VFP中如何实现?
另外其他函数中还有long、dword和ulong型参数,VFP中如何定义类型?