xref: /haiku/headers/os/package/PackageArchitecture.h (revision 5dae1541d63974a6e2011553e9de484a0495414a)
16f0278cdSOliver Tappe /*
2*5dae1541SIngo 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,
16*5dae1541SIngo Weinhold 	B_PACKAGE_ARCHITECTURE_SOURCE	= 3,
176f0278cdSOliver Tappe 	//
186f0278cdSOliver Tappe 	B_PACKAGE_ARCHITECTURE_ENUM_COUNT,
196f0278cdSOliver Tappe };
206f0278cdSOliver Tappe 
216f0278cdSOliver Tappe 
226f0278cdSOliver Tappe }	// namespace BPackageKit
236f0278cdSOliver Tappe 
246f0278cdSOliver Tappe 
256f0278cdSOliver Tappe #endif	// _PACKAGE__PACKAGE_ARCHITECTURE_H_
26