libipmi_usermgmt.h 294 B

1234567891011121314151617181920
  1. #ifndef __LIBIPMI_USER_MANAGEMENT_H__
  2. #define __LIBIPMI_USER_MANAGEMENT_H__
  3. #define PACK __attribute__ ((packed))
  4. typedef struct {
  5. uint8_t byUserID;
  6. char szUserName[16];
  7. } SetUser_T;
  8. typedef struct {
  9. uint8_t byCompletionCode;
  10. char szUserName[16];
  11. } GetUser_T;
  12. #undef PACK
  13. #endif