Home | History | Annotate | Download | only in sepol
      1 #ifndef _SEPOL_H_
      2 #define _SEPOL_H_
      3 
      4 #include <stddef.h>
      5 #include <stdio.h>
      6 
      7 #ifdef __cplusplus
      8 extern "C" {
      9 #endif
     10 
     11 #include <sepol/user_record.h>
     12 #include <sepol/context_record.h>
     13 #include <sepol/iface_record.h>
     14 #include <sepol/port_record.h>
     15 #include <sepol/boolean_record.h>
     16 #include <sepol/node_record.h>
     17 
     18 #include <sepol/booleans.h>
     19 #include <sepol/interfaces.h>
     20 #include <sepol/ports.h>
     21 #include <sepol/nodes.h>
     22 #include <sepol/users.h>
     23 #include <sepol/handle.h>
     24 #include <sepol/debug.h>
     25 #include <sepol/policydb.h>
     26 #include <sepol/module.h>
     27 #include <sepol/context.h>
     28 
     29 /* Set internal policydb from a file for subsequent service calls. */
     30 extern int sepol_set_policydb_from_file(FILE * fp);
     31 
     32 #ifdef __cplusplus
     33 }
     34 #endif
     35 
     36 #endif
     37