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
16const uint32 kMsgAddPrinter         = 'AddP';
17const uint32 kMsgAddPrinterClosed   = 'APCl';
18const uint32 kMsgRemovePrinter      = 'RemP';
19const uint32 kMsgMakeDefaultPrinter = 'MDfP';
20const uint32 kMsgPrinterSelected    = 'PSel';
21const uint32 kMsgCancelJob          = 'CncJ';
22const uint32 kMsgRestartJob         = 'RstJ';
23const uint32 kMsgJobSelected        = 'JSel';
24const uint32 kMsgPrintTestPage		= 'PtPg';
25
26#endif // _MESSAGES_H
27