1#ifndef _NDR_TABLE_PROTO_H_
2#define _NDR_TABLE_PROTO_H_
3
4NTSTATUS ndr_table_register(const struct ndr_interface_table *table);
5const char *ndr_interface_name(const struct GUID *uuid, uint32_t if_version);
6int ndr_interface_num_calls(const struct GUID *uuid, uint32_t if_version);
7const struct ndr_interface_table *ndr_table_by_name(const char *name);
8const struct ndr_interface_table *ndr_table_by_uuid(const struct GUID *uuid);
9const struct ndr_interface_list *ndr_table_list(void);
10NTSTATUS ndr_table_init(void);
11NTSTATUS ndr_table_register_builtin_tables(void);
12
13#endif /* _NDR_TABLE_PROTO_H_ */
14
15