summaryrefslogtreecommitdiff
path: root/source3/include/dcerpc.h
blob: a07b5c67f0be355f300f187cdc1a899a28ff6e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* unused.  Stub to make the pidl generated NDR parsers compile */

struct dcerpc_interface_table {
        const char *name;
        struct ndr_syntax_id syntax_id;
        const char *helpstring;
        uint32_t num_calls;
        const struct ndr_interface_call *calls;
        const struct ndr_interface_string_array *endpoints;
        const struct ndr_interface_string_array *authservices;
};

struct dcerpc_interface_list {
        struct dcerpc_interface_list *prev, *next;
        const struct dcerpc_interface_table *table;
};