Example #1
0
            public SaHpiInventoryRecT DemarshalSaHpiInventoryRecT()
            {
                SaHpiInventoryRecT x = new SaHpiInventoryRecT();

                x.IdrId = DemarshalSaHpiIdrIdT();
                x.Persistent = DemarshalSaHpiBoolT();
                x.Oem = DemarshalSaHpiUint32T();

                return x;
            }
Example #2
0
 public void MarshalSaHpiInventoryRecT( SaHpiInventoryRecT x )
 {
     MarshalSaHpiIdrIdT( x.IdrId );
     MarshalSaHpiBoolT( x.Persistent );
     MarshalSaHpiUint32T( x.Oem );
 }
Example #3
0
 /**
  * Check function for HPI struct SaHpiInventoryRecT
  */
 public static bool Check( SaHpiInventoryRecT x )
 {
     if ( x == null ) {
     return false;
     }
     return true;
 }