1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-05 12:23:50 +03:00

r12623: Another round of fixes for the prototypes of tables.c

This commit is contained in:
Jelmer Vernooij
2005-12-31 00:02:41 +00:00
committed by Gerald (Jerry) Carter
parent 9e0ba38037
commit fb5b22e3dc
4 changed files with 24 additions and 13 deletions

View File

@@ -119,3 +119,16 @@ const struct dcerpc_interface_list *librpc_dcerpc_pipes(void)
}
NTSTATUS dcerpc_register_builtin_interfaces();
NTSTATUS dcerpc_table_init(void)
{
static BOOL initialized = False;
if (initialized) return NT_STATUS_OK;
initialized = True;
dcerpc_register_builtin_interfaces();
return NT_STATUS_OK;
}