From 11:00 PM CST Friday, May 9th - 3:00 PM CST Saturday, May 10th, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
From 11:00 PM CST Friday, May 9th - 3:00 PM CST Saturday, May 10th, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
|
/* Call Library Source File */
#include "extcode.h"
/* Typedefs */
typedef struct {
int32 dimSize;
int32 elt[1];
} TD2;
typedef TD2 **TD2Hdl;
typedef struct {
int32 Numeric;
TD2Hdl Array;
int32 Numeric2;
} TD1;
void funcName(TD1 *arg1);
void funcName(TD1 *arg1)
{
/* Insert Code Here */
}
arg1->Numeric = 5;
|