00001 #ifndef seciddef_h 00002 #define seciddef_h 00003 00004 #define SECID_M_MINOR_ID 0xFFFFFF 00005 #define SECID_M_MAJOR_ID 0xFF000000 00006 00007 #define SECID_K_LENGTH 8 00008 #define SECID_C_LENGTH 8 00009 00010 struct _secid { 00011 unsigned int secid_l_match; 00012 union { 00013 unsigned int secid_l_version; 00014 struct { 00015 unsigned secid_v_minor_id : 24; 00016 unsigned secid_v_major_id : 8; 00017 }; 00018 }; 00019 }; 00020 00021 #endif 00022 00023