Changeset 745 for trunk/server/lib/util/tevent_ntstatus.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/lib/util/tevent_ntstatus.h
r414 r745 24 24 #include <stdbool.h> 25 25 #include "../libcli/util/ntstatus.h" 26 #include "../tevent/tevent.h"26 #include <tevent.h> 27 27 28 bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status); 28 bool _tevent_req_nterror(struct tevent_req *req, 29 NTSTATUS status, 30 const char *location); 31 #define tevent_req_nterror(req, status) \ 32 _tevent_req_nterror(req, status, __location__) 29 33 bool tevent_req_is_nterror(struct tevent_req *req, NTSTATUS *pstatus); 30 34 NTSTATUS tevent_req_simple_recv_ntstatus(struct tevent_req *req); 31 35 36 /* 37 * Helper routine to pass the subreq_ntstatus to the req embedded in 38 * tevent_req_callback_data(subreq), which will be freed. 39 */ 40 void tevent_req_simple_finish_ntstatus(struct tevent_req *subreq, 41 NTSTATUS subreq_status); 42 32 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.