xref: /haiku/src/bin/package/PackageWritingUtils.h (revision a84e14ca84d32e9469c91372d71556488bd3d48b)
1 /*
2  * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef PACKAGE_WRITING_UTILS_H
6 #define PACKAGE_WRITING_UTILS_H
7 
8 
9 #include <SupportDefs.h>
10 
11 #include <package/hpkg/PackageWriter.h>
12 
13 
14 using BPackageKit::BHPKG::BPackageWriter;
15 using BPackageKit::BHPKG::BPackageWriterListener;
16 
17 
18 status_t	add_current_directory_entries(BPackageWriter& packageWriter,
19 				BPackageWriterListener& listener, bool skipPackageInfo);
20 
21 
22 #endif	// PACKAGE_WRITING_UTILS_H
23