| 1 | /** |
| 2 | * This file has no copyright assigned and is placed in the Public Domain. |
| 3 | * This file is part of the mingw-w64 runtime package. |
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 | */ |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
| 10 | #define ADS_PRINTER_PAUSED 0x00000001 |
| 11 | #define ADS_PRINTER_PENDING_DELETION 0x00000002 |
| 12 | #define ADS_PRINTER_ERROR 0x00000003 |
| 13 | #define ADS_PRINTER_PAPER_JAM 0x00000004 |
| 14 | #define ADS_PRINTER_PAPER_OUT 0x00000005 |
| 15 | #define ADS_PRINTER_MANUAL_FEED 0x00000006 |
| 16 | #define ADS_PRINTER_PAPER_PROBLEM 0x00000007 |
| 17 | #define ADS_PRINTER_OFFLINE 0x00000008 |
| 18 | #define ADS_PRINTER_IO_ACTIVE 0x00000100 |
| 19 | #define ADS_PRINTER_BUSY 0x00000200 |
| 20 | #define ADS_PRINTER_PRINTING 0x00000400 |
| 21 | #define ADS_PRINTER_OUTPUT_BIN_FULL 0x00000800 |
| 22 | #define ADS_PRINTER_NOT_AVAILABLE 0x00001000 |
| 23 | #define ADS_PRINTER_WAITING 0x00002000 |
| 24 | #define ADS_PRINTER_PROCESSING 0x00004000 |
| 25 | #define ADS_PRINTER_INITIALIZING 0x00008000 |
| 26 | #define ADS_PRINTER_WARMING_UP 0x00010000 |
| 27 | #define ADS_PRINTER_TONER_LOW 0x00020000 |
| 28 | #define ADS_PRINTER_NO_TONER 0x00040000 |
| 29 | #define ADS_PRINTER_PAGE_PUNT 0x00080000 |
| 30 | #define ADS_PRINTER_USER_INTERVENTION 0x00100000 |
| 31 | #define ADS_PRINTER_OUT_OF_MEMORY 0x00200000 |
| 32 | #define ADS_PRINTER_DOOR_OPEN 0x00400000 |
| 33 | #define ADS_PRINTER_SERVER_UNKNOWN 0x00800000 |
| 34 | #define ADS_PRINTER_POWER_SAVE 0x01000000 |
| 35 | |
| 36 | #define ADS_JOB_PAUSED 0x00000001 |
| 37 | #define ADS_JOB_ERROR 0x00000002 |
| 38 | #define ADS_JOB_DELETING 0x00000004 |
| 39 | #define ADS_JOB_SPOOLING 0x00000008 |
| 40 | #define ADS_JOB_PRINTING 0x00000010 |
| 41 | #define ADS_JOB_OFFLINE 0x00000020 |
| 42 | #define ADS_JOB_PAPEROUT 0x00000040 |
| 43 | #define ADS_JOB_PRINTED 0x00000080 |
| 44 | #define ADS_JOB_DELETED 0x00000100 |
| 45 | |
| 46 | #define ADS_SERVICE_STOPPED 0x00000001 |
| 47 | #define ADS_SERVICE_START_PENDING 0x00000002 |
| 48 | #define ADS_SERVICE_STOP_PENDING 0x00000003 |
| 49 | #define ADS_SERVICE_RUNNING 0x00000004 |
| 50 | #define ADS_SERVICE_CONTINUE_PENDING 0x00000005 |
| 51 | #define ADS_SERVICE_PAUSE_PENDING 0x00000006 |
| 52 | #define ADS_SERVICE_PAUSED 0x00000007 |
| 53 | #define ADS_SERVICE_ERROR 0x00000008 |
| 54 | |
| 55 | #define ADS_SERVICE_OWN_PROCESS 0x00000010 |
| 56 | #define ADS_SERVICE_SHARE_PROCESS 0x00000020 |
| 57 | #define ADS_SERVICE_KERNEL_DRIVER 0x00000001 |
| 58 | #define ADS_SERVICE_FILE_SYSTEM_DRIVER 0x00000002 |
| 59 | |
| 60 | #define ADS_SERVICE_BOOT_START SERVICE_BOOT_START |
| 61 | #define ADS_SERVICE_SYSTEM_START SERVICE_SYSTEM_START |
| 62 | #define ADS_SERVICE_AUTO_START SERVICE_AUTO_START |
| 63 | #define ADS_SERVICE_DEMAND_START SERVICE_DEMAND_START |
| 64 | #define ADS_SERVICE_DISABLED SERVICE_DISABLED |
| 65 | |
| 66 | #define ADS_SERVICE_ERROR_IGNORE 0 |
| 67 | #define ADS_SERVICE_ERROR_NORMAL 1 |
| 68 | #define ADS_SERVICE_ERROR_SEVERE 2 |
| 69 | #define ADS_SERVICE_ERROR_CRITICAL 3 |
| 70 | |
| 71 | #ifdef __cplusplus |
| 72 | } |
| 73 | #endif |