Go to the documentation of this file. 23 #define ACCESS_READ(o1,o2) (_Security->AccessReadObj(o1, o2)) 24 #define ACCESS_WRITE(o1, o2) (_Security->AccessWriteObj(o1, o2)) 27 #define ACCESS_DENIED 0 28 #define ACCESS_GRANTED 1 29 #define ACCESS_BLOCKED 2 31 #define SANCTION_READ 1 32 #define SANCTION_EXECUTE 2 33 #define SANCTION_MOVE 4 34 #define SANCTION_WRITE 8 35 #define SANCTION_INSERT 16 36 #define SANCTION_ANNOTATE 32 38 #define SANCTION_SANCTION (1<<8) 39 #define SANCTION_LOCAL (1<<9) 40 #define SANCTION_ALL (1<<15)-1 41 #define SANCTION_SHIFT_DENY 16 42 #define SANCTION_COMPLETE (0xffffffff) 43 #define SANCTION_POSITIVE (0xffff0000) 44 #define SANCTION_NEGATIVE (0x0000ffff) 46 #define SANCTION_READ_ROLE (SANCTION_READ|SANCTION_EXECUTE|SANCTION_ANNOTATE)