summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_proto.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-17 23:13:48 +0200
committerVolker Lendecke <vl@samba.org>2009-08-29 19:42:26 +0200
commit9c30a8dc6fffd592592a108f3d9d93769ba74417 (patch)
tree2dcf9b86aef2e3c57b334f67133448e5524e2dbc /source3/winbindd/winbindd_proto.h
parent6e2bf7e23480cb467288adac145ec2853aeaa11d (diff)
downloadsamba-9c30a8dc6fffd592592a108f3d9d93769ba74417.tar.gz
samba-9c30a8dc6fffd592592a108f3d9d93769ba74417.tar.bz2
samba-9c30a8dc6fffd592592a108f3d9d93769ba74417.zip
s3:winbind: Convert the GETPWENT routines to the new API
Diffstat (limited to 'source3/winbindd/winbindd_proto.h')
-rw-r--r--source3/winbindd/winbindd_proto.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_proto.h b/source3/winbindd/winbindd_proto.h
index f66becae33..1cce60c1cb 100644
--- a/source3/winbindd/winbindd_proto.h
+++ b/source3/winbindd/winbindd_proto.h
@@ -868,5 +868,25 @@ struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
struct winbindd_pw *pw);
NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
+struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct winbindd_cli_state *cli,
+ struct winbindd_request *request);
+NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
+ struct winbindd_response *presp);
+
+struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct winbindd_cli_state *cli,
+ struct winbindd_request *request);
+NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
+ struct winbindd_response *response);
+
+struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct winbindd_cli_state *cli,
+ struct winbindd_request *request);
+NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
+ struct winbindd_response *response);
#endif /* _WINBINDD_PROTO_H_ */