00001 #ifndef cmbdef_h 00002 #define cmbdef_h 00003 00004 #define CMB_M_READONLY 0x1 00005 #define CMB_M_WRITEONLY 0x2 00006 00007 union _cmbdef { 00008 struct { 00009 unsigned cmb_v_readonly : 1; 00010 unsigned cmb_v_writeonly : 1; 00011 unsigned cmb_v_nothing : 30; 00012 }; 00013 }; 00014 00015 #endif 00016 00017