summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/core.h15
1 files changed, 0 insertions, 15 deletions
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 <stdlib.h>
-/* 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 */