(Page 7 of 29 in this chapter) Version
typedef struct
{
DWORD size;
DWORD network;
DWORD netrefclockmode;
DWORD netrefclockspeed; } SWI_NETREF_CLOCK_ARGS;
void myNetrefClockInit(SWIHD t1hd)
{
SWI_NETREF_CLOCK_ARGS netrefclock;
netrefclock.size = sizeof(SWI_NETREF_CLOCK_ARGS);
netrefclock.network = 1;
netrefclock.netref_clock_mode = MVIP95_H100_NETREF;
netrefclock.netref_clock_speed = MVIP95_H100_NETREF_8KHZ;
swiConfigNetrefClock(t1hd, &netrefclock);
}
(Page 7 of 29 in this chapter) Version