1/* 2 * Copyright (C) 2010 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 18#ifndef ANDROID_OBB_H 19#define ANDROID_OBB_H 20 21#include <sys/types.h> 22 23#ifdef __cplusplus 24extern "C" { 25#endif 26 27struct AObbInfo; 28typedef struct AObbInfo AObbInfo; 29 30enum { 31 AOBBINFO_OVERLAY = 0x0001, 32}; 33 34/** 35 * Scan an OBB and get information about it. 36 */ 37AObbInfo* AObbScanner_getObbInfo(const char* filename); 38 39/** 40 * Destroy the AObbInfo object. You must call this when finished with the object. 41 */ 42void AObbInfo_delete(AObbInfo* obbInfo); 43 44/** 45 * Get the package name for the OBB. 46 */ 47const char* AObbInfo_getPackageName(AObbInfo* obbInfo); 48 49/** 50 * Get the version of an OBB file. 51 */ 52int32_t AObbInfo_getVersion(AObbInfo* obbInfo); 53 54/** 55 * Get the flags of an OBB file. 56 */ 57int32_t AObbInfo_getFlags(AObbInfo* obbInfo); 58 59#ifdef __cplusplus 60}; 61#endif 62 63#endif // ANDROID_OBB_H 64