18 lines
430 B
C
18 lines
430 B
C
#include <inttypes.h>
|
|
typedef uint32_t mpers_ptr_t;
|
|
typedef
|
|
struct {
|
|
int32_t lo_number;
|
|
uint32_t lo_device;
|
|
uint32_t lo_inode;
|
|
uint32_t lo_rdevice;
|
|
int32_t lo_offset;
|
|
int32_t lo_encrypt_type;
|
|
int32_t lo_encrypt_key_size;
|
|
int32_t lo_flags;
|
|
char lo_name[64];
|
|
unsigned char lo_encrypt_key[32];
|
|
uint32_t lo_init[2];
|
|
char reserved[4];
|
|
} ATTRIBUTE_PACKED mx32_struct_loop_info;
|
|
#define MPERS_mx32_struct_loop_info mx32_struct_loop_info
|