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