I have a C function that looks like that
VOID Get_RN_Info ( PRN_RESULT pRN_Result)
the structure for pRN_Result looks like this
typedef struct {
BYTE HexResult [8];
BYTE HexStatus [4];
BYTE HexLength [4];
BYTE HexCharSet [2];
} RN_RESULT;
How would I call this from VB.NET, can anybody point he to a good
example ?