xref: /haiku/headers/os/package/PackageFlags.h (revision d77c6cd26a5cf3863ba4258a063d7d8645abf1e3)
1 /*
2  * Copyright 2011, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _PACKAGE__PACKAGE_FLAGS_H_
6 #define _PACKAGE__PACKAGE_FLAGS_H_
7 
8 
9 namespace BPackageKit {
10 
11 
12 enum {
13 	B_PACKAGE_FLAG_APPROVE_LICENSE	= 1ul << 0,
14 		// will trigger display and approval of license before installation
15 	B_PACKAGE_FLAG_SYSTEM_PACKAGE	= 1ul << 1,
16 		// marks package as system package (i.e. belonging into /boot/system)
17 };
18 
19 
20 }	// namespace BPackageKit
21 
22 
23 #endif	// _PACKAGE__PACKAGE_FLAGS_H_
24