/* WARNING: This file was generated by dkct. Changes you make here will be lost if dkct is run again! You should modify the original source and run dkct on it. Original source: test-pr.ctr */ /** @file test-pr.c The test-pr module. */ #line 1 "test-pr.ctr" #include "dk3all.h" #include "dk3print.h" #include "dk3prreq.h" #line 8 "test-pr.ctr" DK3_MAIN { dk3_print_conf_t *pc; dk3_app_t *app; void *vptr; dk3_printer_t *pr; #line 17 "test-pr.ctr" #line 18 "test-pr.ctr" app = dk3app_open_command(argc, (dkChar const * const *)argv, dkT("test")); if(app) { pc = dk3print_conf_open(app, 1); if(pc) { dk3prreq_report(pc); dk3print_conf_close(pc); } dk3app_close(app); } else { fputs("ERROR: Not enough memory!\n", stderr); fflush(stderr); } #line 31 "test-pr.ctr" #line 32 "test-pr.ctr" exit(0); return 0; }