SOLRecv.h 1.4 KB

123456789101112131415161718192021222324252627282930313233
  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. * SOLRecv.h
  17. * SOL Receive functions
  18. *
  19. * Author: Govind Kothandapani <govindk@ami.com>
  20. * : Gowtham Shanmukham<gowthams@ami.com>
  21. *
  22. *****************************************************************/
  23. #ifndef SOL_RECV_H
  24. #define SOL_RECV_H
  25. #include "Types.h"
  26. #include "SOL.h"
  27. extern int SR_Init (int BMCInst);
  28. extern int SR_OnSOLPkt (SOLPayLoad_T* p_pkt, INT16U size,int BMCInst);
  29. extern int SR_IsPktReady (int BMCInst);
  30. extern int SR_FormSOLPkt (SOLPayLoad_T* p_pkt, _FAR_ INT16U* p_size,int BMCInst);
  31. #endif /* SOL_RECV_H */