1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00
samba-mirror/librpc/ndr/ndr_table.h

15 lines
600 B
C
Raw Normal View History

2008-10-20 13:19:39 +02:00
#ifndef _NDR_TABLE_PROTO_H_
#define _NDR_TABLE_PROTO_H_
NTSTATUS ndr_table_register(const struct ndr_interface_table *table);
const char *ndr_interface_name(const struct GUID *uuid, uint32_t if_version);
int ndr_interface_num_calls(const struct GUID *uuid, uint32_t if_version);
const struct ndr_interface_table *ndr_table_by_name(const char *name);
const struct ndr_interface_table *ndr_table_by_uuid(const struct GUID *uuid);
const struct ndr_interface_list *ndr_table_list(void);
NTSTATUS ndr_table_init(void);
NTSTATUS ndr_table_register_builtin_tables(void);
2008-10-20 13:19:39 +02:00
#endif /* _NDR_TABLE_PROTO_H_ */