SDRFunc.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*****************************************************************
  2. *****************************************************************
  3. *** **
  4. *** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. *** **
  6. *** All Rights Reserved. **
  7. *** **
  8. *** 6145-F, Northbelt Parkway, Norcross, **
  9. *** **
  10. *** Georgia - 30071, USA. Phone-(770)-246-8600. **
  11. *** **
  12. *****************************************************************
  13. *****************************************************************
  14. ******************************************************************
  15. *
  16. * SDRfunc.h
  17. *
  18. *
  19. * Author: Rama Bisa <ramab@ami.com>
  20. *
  21. ******************************************************************/
  22. #ifndef SDRFUNC_H
  23. #define SDRFUNC_H
  24. #include "SDRRecord.h"
  25. #include "com_IPMI_SDR.h"
  26. /**
  27. * @brief Get the first SDR record.
  28. * @return First SDR record if success, 0 if error.
  29. **/
  30. extern SDRRecHdr_T* SDR_GetFirstSDRRec (void);
  31. /**
  32. * @brief Get the next SDR record.
  33. * @param pSDRRec - Current SDR Record.
  34. * @return Next SDR record if success, 0 if error.
  35. **/
  36. extern SDRRecHdr_T* SDR_GetNextSDRRec ( SDRRecHdr_T* pSDRRec);
  37. #endif /* SDRFUNC_H */