EventAPI.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. * EventAPI.h
  16. * Event Access API.
  17. *
  18. * Author: Govind Kothandapani <govindk@ami.com>
  19. *
  20. ******************************************************************/
  21. #ifndef EVENTAPI_H
  22. #define EVENTAPI_H
  23. #include "Types.h"
  24. #include "IPMI_Events.h"
  25. /*-----------------------------------------------------------------
  26. * @fn API_PlatformEvtMsg
  27. * @brief Adds a Platform event message to BMC.
  28. * @param pEventMsg - Pointer to the buffer holding the event message.
  29. * @return -0 if Success
  30. * -1 if failed.
  31. *-----------------------------------------------------------------*/
  32. extern int API_PlatformEvtMsg (_FAR_ INT8U* pEventMsg, int BMCInst);
  33. #endif /* SELAPI_H */