Changeset 745 for trunk/server/source4/libcli/wbclient/wbclient.h
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/libcli/wbclient/wbclient.h
r414 r745 21 21 #include "lib/messaging/irpc.h" 22 22 #include "libcli/composite/composite.h" 23 #include "librpc/gen_ndr/ndr_winbind .h"23 #include "librpc/gen_ndr/ndr_winbind_c.h" 24 24 25 25 struct wbc_context { 26 struct messaging_context *msg_ctx;27 26 struct tevent_context *event_ctx; 28 struct server_id *ids;27 struct dcerpc_binding_handle *irpc_handle; 29 28 }; 30 29 … … 36 35 TALLOC_CTX *mem_ctx, 37 36 uint32_t count, 38 struct id_map ping*ids);37 struct id_map *ids); 39 38 40 39 NTSTATUS wbc_sids_to_xids_recv(struct composite_context *ctx, 41 struct id_map ping**ids);40 struct id_map **ids); 42 41 43 42 struct composite_context *wbc_xids_to_sids_send(struct wbc_context *wbc_ctx, 44 43 TALLOC_CTX *mem_ctx, 45 44 uint32_t count, 46 struct id_map ping*ids);45 struct id_map *ids); 47 46 48 47 NTSTATUS wbc_xids_to_sids_recv(struct composite_context *ctx, 49 struct id_map ping**ids);48 struct id_map **ids); 50 49
Note:
See TracChangeset
for help on using the changeset viewer.