| 772 | */ |
| 773 | |
| 774 | http_t * /* O - Connection to destination or @code NULL@ */ |
| 775 | cupsConnectDestBlock( |
| 776 | cups_dest_t *dest, /* I - Destination */ |
| 777 | unsigned flags, /* I - Connection flags */ |
| 778 | int msec, /* I - Timeout in milliseconds */ |
| 779 | int *cancel, /* I - Pointer to "cancel" variable */ |
| 780 | char *resource, /* I - Resource buffer */ |
| 781 | size_t resourcesize, /* I - Size of resource buffer */ |
| 782 | cups_dest_block_t block) /* I - Callback block */ |
| 783 | { |
| 784 | return (cupsConnectDest(dest, flags, msec, cancel, resource, resourcesize, |
| 785 | (cups_dest_cb_t)cups_block_cb, (void *)block)); |
| 786 | } |
| 787 | #endif /* __BLOCKS__ */ |
| 788 | |
| 789 |
nothing calls this directly
no test coverage detected