1 /* 2 * Copyright 2001-2007, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Michael Pfeiffer 7 * Philippe Houdoin 8 */ 9 #ifndef _MESSAGES_H 10 #define _MESSAGES_H 11 12 13 #include <SupportDefs.h> 14 15 16 const uint32 kMsgAddPrinter = 'AddP'; 17 const uint32 kMsgAddPrinterClosed = 'APCl'; 18 const uint32 kMsgRemovePrinter = 'RemP'; 19 const uint32 kMsgMakeDefaultPrinter = 'MDfP'; 20 const uint32 kMsgPrinterSelected = 'PSel'; 21 const uint32 kMsgCancelJob = 'CncJ'; 22 const uint32 kMsgRestartJob = 'RstJ'; 23 const uint32 kMsgJobSelected = 'JSel'; 24 const uint32 kMsgPrintTestPage = 'PtPg'; 25 26 #endif // _MESSAGES_H 27