- added Collate/NoCollate Icons to Print32 dialog (unfortunately they
  don't display yet).
- added status strings.
- added string table for internationalisation of several internal
  message boxes.

diff --git a/include/winspool.h b/include/winspool.h
index 5fec8fd..1e88558 100644
--- a/include/winspool.h
+++ b/include/winspool.h
@@ -55,6 +55,34 @@
 #define PRINTER_ENUM_ICON7       0x00400000
 #define PRINTER_ENUM_ICON8       0x00800000
 
+
+/* various printer statuses */
+#define PRINTER_STATUS_PAUSED            0x00000001
+#define PRINTER_STATUS_ERROR             0x00000002
+#define PRINTER_STATUS_PENDING_DELETION  0x00000004
+#define PRINTER_STATUS_PAPER_JAM         0x00000008
+#define PRINTER_STATUS_PAPER_OUT         0x00000010
+#define PRINTER_STATUS_MANUAL_FEED       0x00000020
+#define PRINTER_STATUS_PAPER_PROBLEM     0x00000040
+#define PRINTER_STATUS_OFFLINE           0x00000080
+#define PRINTER_STATUS_IO_ACTIVE         0x00000100
+#define PRINTER_STATUS_BUSY              0x00000200
+#define PRINTER_STATUS_PRINTING          0x00000400
+#define PRINTER_STATUS_OUTPUT_BIN_FULL   0x00000800
+#define PRINTER_STATUS_NOT_AVAILABLE     0x00001000
+#define PRINTER_STATUS_WAITING           0x00002000
+#define PRINTER_STATUS_PROCESSING        0x00004000
+#define PRINTER_STATUS_INITIALIZING      0x00008000
+#define PRINTER_STATUS_WARMING_UP        0x00010000
+#define PRINTER_STATUS_TONER_LOW         0x00020000
+#define PRINTER_STATUS_NO_TONER          0x00040000
+#define PRINTER_STATUS_PAGE_PUNT         0x00080000
+#define PRINTER_STATUS_USER_INTERVENTION 0x00100000
+#define PRINTER_STATUS_OUT_OF_MEMORY     0x00200000
+#define PRINTER_STATUS_DOOR_OPEN         0x00400000
+#define PRINTER_STATUS_SERVER_UNKNOWN    0x00800000
+#define PRINTER_STATUS_POWER_SAVE        0x01000000
+
 /* TYPES */
 typedef struct _PRINTER_DEFAULTSA {
   LPSTR        pDatatype;