diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-07 21:04:31 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-07-08 11:23:23 +0200 |
commit | 6e6aaacedb96ea45a5b8a9237915525a87189001 (patch) | |
tree | 8b396716924680b0fb5b7d03c21d481752c7901a /source3/include | |
parent | 6b2749f8a9f527c1d52ba76566c661cab30b59c6 (diff) | |
download | samba-6e6aaacedb96ea45a5b8a9237915525a87189001.tar.gz samba-6e6aaacedb96ea45a5b8a9237915525a87189001.tar.bz2 samba-6e6aaacedb96ea45a5b8a9237915525a87189001.zip |
lib/util Move bitmap.c to lib/util
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 | ||||
-rw-r--r-- | source3/include/smb.h | 5 |
2 files changed, 0 insertions, 14 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d719bd9089..daa7490d55 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -61,15 +61,6 @@ const char *audit_description_str(uint32 category); bool get_audit_category_from_param(const char *param, uint32 *audit_category); const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy); -/* The following definitions come from lib/bitmap.c */ - -struct bitmap *bitmap_talloc(TALLOC_CTX *mem_ctx, int n); -int bitmap_copy(struct bitmap * const dst, const struct bitmap * const src); -bool bitmap_set(struct bitmap *bm, unsigned i); -bool bitmap_clear(struct bitmap *bm, unsigned i); -bool bitmap_query(struct bitmap *bm, unsigned i); -int bitmap_find(struct bitmap *bm, unsigned ofs); - /* The following definitions come from lib/charcnv.c */ void gfree_charcnv(void); diff --git a/source3/include/smb.h b/source3/include/smb.h index d41d36342d..0c1a76eaf7 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -705,11 +705,6 @@ struct connections_data { uint32 unused_compatitibility_field; }; -struct bitmap { - uint32 *b; - unsigned int n; -}; - /* offsets into message for common items */ #define smb_com 8 #define smb_rcls 9 |