mirror of
https://review.haiku-os.org/haiku
synced 2025-02-09 07:09:09 +01:00
25 lines
443 B
C
25 lines
443 B
C
|
/*
|
||
|
* Copyright 2011, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _PACKAGE__PACKAGE_ARCHITECTURE_H_
|
||
|
#define _PACKAGE__PACKAGE_ARCHITECTURE_H_
|
||
|
|
||
|
|
||
|
namespace BPackageKit {
|
||
|
|
||
|
|
||
|
enum BPackageArchitecture {
|
||
|
B_PACKAGE_ARCHITECTURE_ANY = 0,
|
||
|
B_PACKAGE_ARCHITECTURE_X86,
|
||
|
B_PACKAGE_ARCHITECTURE_X86_GCC2,
|
||
|
//
|
||
|
B_PACKAGE_ARCHITECTURE_ENUM_COUNT,
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace BPackageKit
|
||
|
|
||
|
|
||
|
#endif // _PACKAGE__PACKAGE_ARCHITECTURE_H_
|