Exemplo n.º 1
0
 public void MarshalSaHpiDimiEventT( SaHpiDimiEventT x )
 {
     MarshalSaHpiDimiNumT( x.DimiNum );
     MarshalSaHpiDimiTestNumT( x.TestNum );
     MarshalSaHpiDimiTestRunStatusT( x.DimiTestRunStatus );
     MarshalSaHpiDimiTestPercentCompletedT( x.DimiTestPercentCompleted );
 }
Exemplo n.º 2
0
            public SaHpiDimiEventT DemarshalSaHpiDimiEventT()
            {
                SaHpiDimiEventT x = new SaHpiDimiEventT();

                x.DimiNum = DemarshalSaHpiDimiNumT();
                x.TestNum = DemarshalSaHpiDimiTestNumT();
                x.DimiTestRunStatus = DemarshalSaHpiDimiTestRunStatusT();
                x.DimiTestPercentCompleted = DemarshalSaHpiDimiTestPercentCompletedT();

                return x;
            }
Exemplo n.º 3
0
 /**
  * Check function for HPI struct SaHpiDimiEventT
  */
 public static bool Check( SaHpiDimiEventT x )
 {
     if ( x == null ) {
     return false;
     }
     return true;
 }