| 1001 | */ |
| 1002 | |
| 1003 | int /* O - 1 on success, 0 on failure */ |
| 1004 | cupsEnumDestsBlock( |
| 1005 | unsigned flags, /* I - Enumeration flags */ |
| 1006 | int timeout, /* I - Timeout in milliseconds, 0 for indefinite */ |
| 1007 | int *cancel, /* I - Pointer to "cancel" variable */ |
| 1008 | cups_ptype_t type, /* I - Printer type bits */ |
| 1009 | cups_ptype_t mask, /* I - Mask for printer type bits */ |
| 1010 | cups_dest_block_t block) /* I - Block */ |
| 1011 | { |
| 1012 | return (cupsEnumDests(flags, timeout, cancel, type, mask, |
| 1013 | (cups_dest_cb_t)cups_block_cb, (void *)block)); |
| 1014 | } |
| 1015 | # endif /* __BLOCKS__ */ |
| 1016 | |
| 1017 |
nothing calls this directly
no test coverage detected