From 54b6cfa9a9e5b861a9930af873580d6dc20f773c Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- tools/aapt/Main.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 tools/aapt/Main.h (limited to 'tools/aapt/Main.h') diff --git a/tools/aapt/Main.h b/tools/aapt/Main.h new file mode 100644 index 000000000000..65c0a8a91dee --- /dev/null +++ b/tools/aapt/Main.h @@ -0,0 +1,41 @@ +// +// Copyright 2006 The Android Open Source Project +// +// Some global defines that don't really merit their own header. +// +#ifndef __MAIN_H +#define __MAIN_H + +#include +#include "Bundle.h" +#include "AaptAssets.h" +#include + +extern int doVersion(Bundle* bundle); +extern int doList(Bundle* bundle); +extern int doDump(Bundle* bundle); +extern int doAdd(Bundle* bundle); +extern int doRemove(Bundle* bundle); +extern int doPackage(Bundle* bundle); + +extern int calcPercent(long uncompressedLen, long compressedLen); + +extern android::status_t writeAPK(Bundle* bundle, + const sp& assets, + const android::String8& outputFile); + +extern android::status_t buildResources(Bundle* bundle, + const sp& assets); + +extern android::status_t writeResourceSymbols(Bundle* bundle, + const sp& assets, const String8& pkgName, bool includePrivate); + +extern bool isValidResourceType(const String8& type); + +ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp& assets); + +extern status_t filterResources(Bundle* bundle, const sp& assets); + +int dumpResources(Bundle* bundle); + +#endif // __MAIN_H -- cgit v1.2.3-59-g8ed1b