Changeset 988 for vendor/current/source3/printing/notify.h
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/printing/notify.h
r740 r988 30 30 void notify_printer_status_byname(struct tevent_context *ev, 31 31 struct messaging_context *msg_ctx, 32 const char *sharename, uint32 status);32 const char *sharename, uint32_t status); 33 33 void notify_printer_status(struct tevent_context *ev, 34 34 struct messaging_context *msg_ctx, 35 int snum, uint32 status);35 int snum, uint32_t status); 36 36 void notify_job_status_byname(struct tevent_context *ev, 37 37 struct messaging_context *msg_ctx, 38 const char *sharename, uint32 jobid,39 uint32 status,40 uint32 flags);38 const char *sharename, uint32_t jobid, 39 uint32_t status, 40 uint32_t flags); 41 41 void notify_job_status(struct tevent_context *ev, 42 42 struct messaging_context *msg_ctx, 43 const char *sharename, uint32 jobid, uint32status);43 const char *sharename, uint32_t jobid, uint32_t status); 44 44 void notify_job_total_bytes(struct tevent_context *ev, 45 45 struct messaging_context *msg_ctx, 46 const char *sharename, uint32 jobid,47 uint32 size);46 const char *sharename, uint32_t jobid, 47 uint32_t size); 48 48 void notify_job_total_pages(struct tevent_context *ev, 49 49 struct messaging_context *msg_ctx, 50 const char *sharename, uint32 jobid,51 uint32 pages);50 const char *sharename, uint32_t jobid, 51 uint32_t pages); 52 52 void notify_job_username(struct tevent_context *ev, 53 53 struct messaging_context *msg_ctx, 54 const char *sharename, uint32 jobid, char *name);54 const char *sharename, uint32_t jobid, char *name); 55 55 void notify_job_name(struct tevent_context *ev, 56 56 struct messaging_context *msg_ctx, 57 const char *sharename, uint32 jobid, char *name);57 const char *sharename, uint32_t jobid, char *name); 58 58 void notify_job_submitted(struct tevent_context *ev, 59 59 struct messaging_context *msg_ctx, 60 const char *sharename, uint32 jobid,60 const char *sharename, uint32_t jobid, 61 61 time_t submitted); 62 62 void notify_printer_driver(struct tevent_context *ev, … … 80 80 void notify_printer_byname(struct tevent_context *ev, 81 81 struct messaging_context *msg_ctx, 82 const char *printername, uint32 change,82 const char *printername, uint32_t change, 83 83 const char *value); 84 84 void notify_printer_sepfile(struct tevent_context *ev,
Note:
See TracChangeset
for help on using the changeset viewer.