123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef _CAP_H_
- #define _CAP_H_
- #include "basics.h"
- typedef struct _cap cap;
- INLINE_CAP\
- (cap *) cap_create
- (const char *name);
- INLINE_CAP\
- (void) cap_init
- (cap *db);
- INLINE_CAP\
- (signed_cell) cap_external
- (cap *db,
- void *internal);
- INLINE_CAP\
- (void *) cap_internal
- (cap *db,
- signed_cell external);
- INLINE_CAP\
- (void) cap_add
- (cap *db,
- void *internal);
- INLINE_CAP\
- (void) cap_remove
- (cap *db,
- void *internal);
- #endif
|