LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

labview /C++ structure interface

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
0 Kudos
Message 1 of 2
(2,641 Views)
  check out this attachment
0 Kudos
Message 2 of 2
(2,635 Views)