4b7e219688
* Remove support for the "common" installation location from packagefs, package kit, package daemon, package managers. * Rename the B_COMMON_*_DIRECTORY constants referring to writable directories to B_SYSTEM_*_DIRECTORY. * Remove/adjust the use of various B_COMMON_*_DIRECTORY constants. I'm sure some occurrence still remain. They can be adjusted when the remaining B_COMMON_*_DIRECTORY constants are removed.
24 lines
421 B
C++
24 lines
421 B
C++
/*
|
|
* Copyright 2011-2013, Haiku, Inc.
|
|
* 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_
|