source: trunk/pdr/include/callcups.h@ 5

Last change on this file since 5 was 5, checked in by bart, 17 years ago

Initial check in of port driver source

File size: 538 bytes
Line 
1#ifndef CALLCUPS_INCLUDED
2#define CALLCUPS_INCLUDED
3
4#include <ecups.h>
5
6typedef struct cups_option_s /**** Printer Options ****/
7{
8 char *name; /* Name of option */
9 char *value; /* Value of option */
10} cups_option_t;
11
12ULONG CallCups(PECUPSSESSIONDATA peCUPSSession);
13
14APIRET (* _cdecl pfncupsSetServer)(const char *server);
15int (* _cdecl pfncupsPrintFile)(const char *printer, const char *filename,const char *title, int num_options,cups_option_t *options);
16const char * (* _cdecl pfncupsUser)(void);
17
18#endif
Note: See TracBrowser for help on using the repository browser.