API.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. * PMApi.h
  17. * Platform manager APIs.
  18. *
  19. * Author: Govind Kothandapani <govindk@ami.com>
  20. *
  21. ******************************************************************/
  22. #ifndef PMAPI_H
  23. #define PMAPI_H
  24. #include "Types.h"
  25. #include "IPMIDefs.h"
  26. #include "Message.h"
  27. #include "MsgAPI.h"
  28. #include "ChassisAPI.h"
  29. #include "EventAPI.h"
  30. #include "SELAPI.h"
  31. #include "SDRAPI.h"
  32. #include "FRUAPI.h"
  33. #include "AlertAPI.h"
  34. #include "MiscAPI.h"
  35. #include "IPMI_App.h"
  36. #include "IPMI_AppDevice.h"
  37. #include "IPMI_Sensor.h"
  38. /*------------------------------------------------------------------
  39. * @fn API_ExecuteCmd
  40. * @brief Execute a IPMI command by posting the request to
  41. * Message handler and receives the response.
  42. *------------------------------------------------------------------*/
  43. extern int API_ExecuteCmd (MsgPkt_T *pMsgPkt, int BMCInst);
  44. #endif /* PMAPI_H */