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 12 static const uint32 MSG_STATUS_MESSAGE = 'iSTM'; 13 static const uint32 MSG_INSTALL_FINISHED = 'iIFN'; 14 static const uint32 MSG_RESET = 'iRSI'; 15 static const uint32 MSG_WRITE_BOOT_SECTOR = 'iWBS'; 16 17 extern const char* const kPackagesDirectoryPath; 18 extern const char* const kSourcesDirectoryPath; 19 20 21 #endif // INSTALLER_DEFS_H 22