~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to librpc/ndr/ndr_table.h

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

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