summaryrefslogtreecommitdiff
path: root/source3/include/rpc_client_proto.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-12-13 12:13:22 +0000
committerTim Potter <tpot@samba.org>2000-12-13 12:13:22 +0000
commit6de135b0b2a9face6d1f5c1300c1a1ff4b68e251 (patch)
tree4fd9adcbfd2c71092eb7f33a1e4eb05afd338253 /source3/include/rpc_client_proto.h
parente43671cd57dff9a92d5a196e89a552712a30abee (diff)
downloadsamba-6de135b0b2a9face6d1f5c1300c1a1ff4b68e251.tar.gz
samba-6de135b0b2a9face6d1f5c1300c1a1ff4b68e251.tar.bz2
samba-6de135b0b2a9face6d1f5c1300c1a1ff4b68e251.zip
make proto
Updates for dynamic sized lookup names/sids (This used to be commit 34743c157632b1784bd15e3ca97380b1f9754e46)
Diffstat (limited to 'source3/include/rpc_client_proto.h')
-rw-r--r--source3/include/rpc_client_proto.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/source3/include/rpc_client_proto.h b/source3/include/rpc_client_proto.h
index 6a66c9d417..3b94c37d59 100644
--- a/source3/include/rpc_client_proto.h
+++ b/source3/include/rpc_client_proto.h
@@ -50,17 +50,18 @@ BOOL cli_nt_logoff(struct cli_state *cli, NET_ID_INFO_CTR *ctr);
BOOL do_lsa_open_policy(struct cli_state *cli,
char *system_name, POLICY_HND *hnd,
BOOL sec_qos);
-BOOL do_lsa_lookup_sids(struct cli_state *cli,
- POLICY_HND *hnd,
- int num_sids,
- DOM_SID **sids,
- char ***names,
- int *num_names);
BOOL do_lsa_query_info_pol(struct cli_state *cli,
POLICY_HND *hnd, uint16 info_class,
fstring domain_name, DOM_SID *domain_sid);
BOOL do_lsa_close(struct cli_state *cli, POLICY_HND *hnd);
BOOL cli_lsa_get_domain_sid(struct cli_state *cli, char *server);
+uint32 lsa_open_policy(const char *system_name, POLICY_HND *hnd,
+ BOOL sec_qos, uint32 des_access);
+uint32 lsa_close(POLICY_HND *hnd);
+uint32 lsa_lookup_sids(POLICY_HND *hnd, int num_sids, DOM_SID *sids,
+ char ***names, uint32 **types, int *num_names);
+uint32 lsa_lookup_names(POLICY_HND *hnd, int num_names, char **names,
+ DOM_SID **sids, uint32 **types, int *num_sids);
/*The following definitions come from rpc_client/cli_netlogon.c */