05-10-2010, 12:31 AM
...
#ifdef __cplusplus
extern "C" {
#endif
#pragma pack(push,1)
...
typedef struct tag_EXPORT_INFO_111
{
int flag ;//flag
float total;
float num1;
float num2;
float num3;
float numall;
//float num9;
}EXPORT_INFO_111;
...
#pragma pack(pop)
...
DllExport void WINAPI Function1(int *nNum, void *pData); //pData-->EXPORT_INFO_111[x]
...
#ifdef __cplusplus
extern "C" {
#endif
#pragma pack(push,1)
...
typedef struct tag_EXPORT_INFO_111
{
int flag ;//flag
float total;
float num1;
float num2;
float num3;
float numall;
//float num9;
}EXPORT_INFO_111;
...
#pragma pack(pop)
...
DllExport void WINAPI Function1(int *nNum, void *pData); //pData-->EXPORT_INFO_111[x]
...
