]> git.saurik.com Git - android/aapt.git/blame - Images.h
am f22eb963: am c9fe6568: am 9e22d9c5: Merge "Fix "Too many open files" error for...
[android/aapt.git] / Images.h
CommitLineData
dadd9c1f
TAOSP
1//
2// Copyright 2006 The Android Open Source Project
3//
4// Build resource files from raw assets.
5//
6
7#ifndef IMAGES_H
8#define IMAGES_H
9
10#include "ResourceTable.h"
dddb1fc7
JG
11#include "Bundle.h"
12
13#include <utils/String8.h>
14#include <utils/RefBase.h>
15
16using android::String8;
dadd9c1f 17
c5d0eefd 18status_t preProcessImage(const Bundle* bundle, const sp<AaptAssets>& assets,
dadd9c1f
TAOSP
19 const sp<AaptFile>& file, String8* outNewLeafName);
20
c5d0eefd 21status_t preProcessImageToCache(const Bundle* bundle, const String8& source, const String8& dest);
dddb1fc7 22
dadd9c1f 23status_t postProcessImage(const sp<AaptAssets>& assets,
dddb1fc7 24 ResourceTable* table, const sp<AaptFile>& file);
dadd9c1f
TAOSP
25
26#endif