AMISyslogConf.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. * AmiSyslogConf.h
  16. * AMI Syslog configuration command Macros
  17. *
  18. * Author: Gokula Kannan. S <gokulakannans@amiindia.co.in>
  19. *
  20. ******************************************************************/
  21. #ifndef __AMISYSLOGCONF_H__
  22. #define __AMISYSLOGCONF_H__
  23. #include "Types.h"
  24. /**
  25. * @fn AMIGetLogConf
  26. * @brief Get the log configuration file.
  27. * @param[in] pReq - pointer to the request.
  28. * @param[in] ReqLen - Length of the request.
  29. * @param[out] pRes - pointer to the result.
  30. * @retval CC_NORMAL, on success,
  31. * CC_UNSPECIFIED_ERR, if any unknown errors.
  32. */
  33. extern int AMIGetLogConf(_NEAR_ INT8U* pReq, INT32U ReqLen, _NEAR_ INT8U* pRes,int BMCInst);
  34. /**
  35. * @fn AMIGetLogConf
  36. * @brief Get the log configuration file.
  37. * @param[in] pReq - pointer to the request.
  38. * @param[in] ReqLen - Length of the request.
  39. * @param[out] pRes - pointer to the result.
  40. * @retval CC_NORMAL, on success,
  41. * CC_UNSPECIFIED_ERR, if any unknown errors.
  42. */
  43. extern int AMISetLogConf(_NEAR_ INT8U* pReq, INT32U ReqLen, _NEAR_ INT8U* pRes,int BMCInst);
  44. #endif // __AMISYSLOGCONF_H__