1/*
2 * Copyright 2013, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef INSTALLER_DEFS_H
6#define INSTALLER_DEFS_H
7
8
9#include <SupportDefs.h>
10
11
12static const uint32 MSG_STATUS_MESSAGE = 'iSTM';
13static const uint32 MSG_INSTALL_FINISHED = 'iIFN';
14static const uint32 MSG_RESET = 'iRSI';
15static const uint32 MSG_WRITE_BOOT_SECTOR = 'iWBS';
16
17extern const char* const kPackagesDirectoryPath;
18extern const char* const kSourcesDirectoryPath;
19
20
21#endif	// INSTALLER_DEFS_H
22