Visual C#


Starts and stops output to the specified device.

int Ret;               // Return value

short AppId;

 

//----------------------------------------

// Please refer to "Init Processing"

//----------------------------------------

 

//----------------------------------------

// Signal output start processing

//----------------------------------------

Ret = gen.StartOperation ( AppId ); if(Ret != 0)

{

    System.Diagnostics.Debug.WriteLine("Error occurred in GenStartOperation " + Ret.ToString());

}

 

//----------------------------------------

// Signal output stop processing

//----------------------------------------

Ret = gen.StopOperation ( AppId ); if(Ret != 0)

{     System.Diagnostics.Debug.WriteLine("Error occurred in GenStopOperation " + Ret.ToString());

}

 

//----------------------------------------

// Please refer to "Exit Processing"

//----------------------------------------