06-24-2009 04:53 AM
Hi,
So I am calling a DLL inside my LabVIEW VI.
Inside the DLL, I have the following structure:
typedef struct
{
char string[21];
} Geo_Tuple;
Then I used it here in a function by calling:
set_Geo_Coordinates(const File_or_Interactive State, const Input_or_Output Direction, const Geo_Tuple coordinates)
(Note that File_or_Interactive and Input_or_Output are typedef enum.)
So now, I am trying to implement this function in LV using the Call Function Node.
However, it's not working --> const Geo_Tuple coordinates does not have the correct structure.
So my question:
How do I implement
typedef struct
{
char string[21];
} Geo_Tuple;
So that I can use it here: set_Geo_Coordinates(const File_or_Interactive State, const Input_or_Output Direction, const Geo_Tuple coordinates)
Thanks!
06-24-2009 09:05 AM