From 6e6aaacedb96ea45a5b8a9237915525a87189001 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 7 Jul 2011 21:04:31 +1000 Subject: lib/util Move bitmap.c to lib/util --- source3/include/proto.h | 9 --------- source3/include/smb.h | 5 ----- 2 files changed, 14 deletions(-) (limited to 'source3/include') 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 -- cgit