1234567891011121314151617181920 |
- #ifndef __LIBIPMI_USER_MANAGEMENT_H__
- #define __LIBIPMI_USER_MANAGEMENT_H__
- #define PACK __attribute__ ((packed))
- typedef struct {
- uint8_t byUserID;
- char szUserName[16];
- } SetUser_T;
- typedef struct {
- uint8_t byCompletionCode;
- char szUserName[16];
- } GetUser_T;
- #undef PACK
- #endif
|