r8940: Add TDR (Trivial Data Representation). The aim is to use this later for
[bbaumbach/samba-autobuild/.git] / source4 / lib / tdr / tdr.h
1 /* 
2    Unix SMB/CIFS implementation.
3    TDR definitions
4    Copyright (C) Jelmer Vernooij 2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #define TDR_FLAG_BIGENDIAN              1
22
23 struct tdr_pull {
24         uint8_t *data;
25         uint32_t offset;
26         uint32_t length;
27         int flags;
28 };
29
30 struct tdr_push {
31         uint8_t *data;
32         uint32_t alloc_size;
33         uint32_t offset;
34         uint32_t length;
35         int flags;
36 };
37
38 struct tdr_print {
39         int level;
40         void (*print)(struct tdr_print *, const char *, ...);
41 };
42
43 #define TDR_CHECK(call) do { NTSTATUS _status; \
44                              _status = call; \
45                              if (!NT_STATUS_IS_OK(_status)) \
46                                 return _status; \
47                         } while (0)
48
49 #define TDR_ALLOC(tdr, s, n) do { \
50                                (s) = talloc_array_size(tdr, sizeof(*(s)), n); \
51                            if ((n) && !(s)) return NT_STATUS_NO_MEMORY; \
52                            } while (0)