Example #1
0
 /**
  * Check function for HPI struct SaHpiEntityT
  */
 public static bool Check( SaHpiEntityT x )
 {
     if ( x == null ) {
     return false;
     }
     return true;
 }
Example #2
0
 public void MarshalSaHpiEntityT( SaHpiEntityT x )
 {
     MarshalSaHpiEntityTypeT( x.EntityType );
     MarshalSaHpiEntityLocationT( x.EntityLocation );
 }
Example #3
0
            public SaHpiEntityT DemarshalSaHpiEntityT()
            {
                SaHpiEntityT x = new SaHpiEntityT();

                x.EntityType = DemarshalSaHpiEntityTypeT();
                x.EntityLocation = DemarshalSaHpiEntityLocationT();

                return x;
            }