xref: /haiku/headers/os/package/PackageArchitecture.h (revision 03d70b4e58f04e54ed9d76a072a0b66750f7037c)
16f0278cdSOliver Tappe /*
25dae1541SIngo Weinhold  * Copyright 2011-2013, Haiku, Inc.
36f0278cdSOliver Tappe  * Distributed under the terms of the MIT License.
46f0278cdSOliver Tappe  */
56f0278cdSOliver Tappe #ifndef _PACKAGE__PACKAGE_ARCHITECTURE_H_
66f0278cdSOliver Tappe #define _PACKAGE__PACKAGE_ARCHITECTURE_H_
76f0278cdSOliver Tappe 
86f0278cdSOliver Tappe 
96f0278cdSOliver Tappe namespace BPackageKit {
106f0278cdSOliver Tappe 
116f0278cdSOliver Tappe 
126f0278cdSOliver Tappe enum BPackageArchitecture {
136f0278cdSOliver Tappe 	B_PACKAGE_ARCHITECTURE_ANY		= 0,
1407b37bb0SOliver Tappe 	B_PACKAGE_ARCHITECTURE_X86		= 1,
1507b37bb0SOliver Tappe 	B_PACKAGE_ARCHITECTURE_X86_GCC2	= 2,
165dae1541SIngo Weinhold 	B_PACKAGE_ARCHITECTURE_SOURCE	= 3,
17*03d70b4eSIngo Weinhold 	B_PACKAGE_ARCHITECTURE_X86_64	= 4,
186f0278cdSOliver Tappe 	//
196f0278cdSOliver Tappe 	B_PACKAGE_ARCHITECTURE_ENUM_COUNT,
206f0278cdSOliver Tappe };
216f0278cdSOliver Tappe 
226f0278cdSOliver Tappe 
236f0278cdSOliver Tappe }	// namespace BPackageKit
246f0278cdSOliver Tappe 
256f0278cdSOliver Tappe 
266f0278cdSOliver Tappe #endif	// _PACKAGE__PACKAGE_ARCHITECTURE_H_
27