From 2b5d317af191256abea65328ce8d8a8833dcae69 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 27 Feb 2007 18:52:38 +0000 Subject: r21565: Import ndrdump (doesn't compile yet, needs table support functions). (This used to be commit 9a9b9421673ed1c455658d8ae79d7a1522a1baa7) --- source3/librpc/gen_ndr/tables.c | 59 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 source3/librpc/gen_ndr/tables.c (limited to 'source3/librpc/gen_ndr') diff --git a/source3/librpc/gen_ndr/tables.c b/source3/librpc/gen_ndr/tables.c new file mode 100644 index 0000000000..d260149901 --- /dev/null +++ b/source3/librpc/gen_ndr/tables.c @@ -0,0 +1,59 @@ + +/* Automatically generated by tables.pl. DO NOT EDIT */ + +#include "includes.h" +#include "librpc/rpc/dcerpc.h" +#include "librpc/rpc/dcerpc_table.h" +#include "librpc/gen_ndr/ndr_dfs.h" +#include "librpc/gen_ndr/ndr_echo.h" +#include "librpc/gen_ndr/ndr_eventlog.h" +#include "librpc/gen_ndr/ndr_initshutdown.h" +#include "librpc/gen_ndr/ndr_lsa.h" +#include "librpc/gen_ndr/ndr_netlogon.h" +#include "librpc/gen_ndr/ndr_srvsvc.h" +#include "librpc/gen_ndr/ndr_svcctl.h" +#include "librpc/gen_ndr/ndr_unixinfo.h" +#include "librpc/gen_ndr/ndr_winreg.h" +#include "librpc/gen_ndr/ndr_wkssvc.h" + +NTSTATUS dcerpc_register_builtin_interfaces(void) +{ + NTSTATUS status; + + status = librpc_register_interface(&dcerpc_table_netdfs); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_rpcecho); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_eventlog); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_initshutdown); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_lsarpc); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_netlogon); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_srvsvc); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_svcctl); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_unixinfo); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_winreg); + if (NT_STATUS_IS_ERR(status)) return status; + + status = librpc_register_interface(&dcerpc_table_wkssvc); + if (NT_STATUS_IS_ERR(status)) return status; + + + + return NT_STATUS_OK; +} -- cgit