IPMI_AMIBiosCode.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /****************************************************************
  2. ****************************************************************
  3. ** **
  4. ** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. ** **
  6. ** All Rights Reserved. **
  7. ** **
  8. ** 5555 Oakbrook Pkwy, Building 200, Norcross, **
  9. ** **
  10. ** Georgia 30093, USA. Phone-(770)-246-8600. **
  11. ** **
  12. ****************************************************************
  13. ****************************************************************/
  14. /*****************************************************************
  15. *
  16. * IPMI_AMIBiosCode.h
  17. *
  18. *
  19. * Author: Gokulakannan. S <gokulakannans@amiindia.co.in>
  20. *****************************************************************/
  21. #ifndef IPMI_AMIBIOSCODE_H_
  22. #define IPMI_AMIBIOSCODE_H_
  23. #define MAX_SIZE 256
  24. #define CURRENT 0x00
  25. #define PREVIOUS 0x01
  26. #pragma pack (1)
  27. typedef struct
  28. {
  29. INT8U Command;
  30. } PACKED AMIGetBiosCodeReq_T;
  31. typedef struct
  32. {
  33. INT8U CompletionCode;
  34. INT8U BiosCode[MAX_SIZE];
  35. } PACKED AMIGetBiosCodeRes_T;
  36. #pragma pack ()
  37. #endif /* IPMI_AMIBIOSCODE_H_ */