2011-07-17 01:19:00 +04:00
|
|
|
/*
|
2013-10-03 23:44:44 +04:00
|
|
|
* Copyright 2011-2013, Haiku, Inc.
|
2011-07-17 01:19:00 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _PACKAGE__PACKAGE_DEFS_H_
|
|
|
|
#define _PACKAGE__PACKAGE_DEFS_H_
|
|
|
|
|
|
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
|
|
|
|
|
|
|
|
enum BPackageInstallationLocation {
|
|
|
|
B_PACKAGE_INSTALLATION_LOCATION_SYSTEM,
|
|
|
|
B_PACKAGE_INSTALLATION_LOCATION_HOME,
|
|
|
|
|
|
|
|
B_PACKAGE_INSTALLATION_LOCATION_ENUM_COUNT
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _PACKAGE__PACKAGE_DEFS_H_
|