I have a C++ DLL that want interface with labview I use the following function
long _stdcall HisysGMC_RecupAttributsModule(GMC_strAttributsModule *ModuleHisys , long NumModule);
the structure GMC_strAttributsModule is :
#define TailleNomDonnee_strAttributDonnee 60
typedef struct {
char NomDonnee[TailleNomDonnee_strAttributDonnee];
ULONG RefDonnee;
long tailleDonnee; // taille donnee en byte
EnumGMC_Typedonnee TypeDonnee; // type donnée Long , Byte ou flottant
EnumGMC_Sensdonnee produiteConsommee; // indique si la donnee est produite ou consommee
ULONG ID_GMC_donnee;
ULONG ID_GMC_Module;
}GMC_strAttributDonnee;
It is possible to use this function