From Saturday, Nov 23rd 7:00 PM CST - Sunday, Nov 24th 7:45 AM CST, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
From Saturday, Nov 23rd 7:00 PM CST - Sunday, Nov 24th 7:45 AM CST, 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;
|