1/*
2 * Copyright 1999-2009 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Jeremy Friesner
7 */
8#ifndef _SHORTCUTS_CONSTANTS_H
9#define _SHORTCUTS_CONSTANTS_H
10
11
12#define SHORTCUTS_SETTING_FILE_NAME		"shortcuts_settings"
13#define SHORTCUTS_CATCHER_PORT_NAME		"ShortcutsCatcherPort"
14
15
16enum {
17	EXECUTE_COMMAND = 'exec',	// Code: Execute "command" as given
18	REPLENISH_MESSENGER,		// sent to tell us to write our port again
19	NUM_ACTION_CODES
20};
21
22
23#endif	// _SHORTCUTS_CONSTANTS_H
24