From 0b91f3916430d0271eab867675d44c5439de40c2 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 29 Aug 2007 13:07:03 +0000 Subject: r24780: More work allowing libutil to be used by external users. (This used to be commit 31993cf67b816a184a4a4e92ef8ca2532c797190) --- source4/include/core.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'source4/include') diff --git a/source4/include/core.h b/source4/include/core.h index a31b4c59c7..55e89e9761 100644 --- a/source4/include/core.h +++ b/source4/include/core.h @@ -27,24 +27,10 @@ #include -/* used to hold an arbitrary blob of data */ -typedef struct datablob { - uint8_t *data; - size_t length; -} DATA_BLOB; - -struct data_blob_list_item { - struct data_blob_list_item *prev,*next; - DATA_BLOB blob; -}; - /* by making struct ldb_val and DATA_BLOB the same, we can simplify a fair bit of code */ #define ldb_val datablob -/* 64 bit time (100 nanosec) 1601 - cifs6.txt, section 3.5, page 30, 4 byte aligned */ -typedef uint64_t NTTIME; - /* we use struct ipv4_addr to avoid having to include all the system networking headers everywhere @@ -104,5 +90,4 @@ enum announce_as {/* Types of machine we can announce as. */ ANNOUNCE_AS_NT_WORKSTATION=4 }; - #endif /* _SAMBA_CORE_H */ -- cgit