summaryrefslogtreecommitdiffstats
path: root/include/android/obb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/android/obb.h')
-rw-r--r--include/android/obb.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/android/obb.h b/include/android/obb.h
index 65e9b2a..4c6d9d7 100644
--- a/include/android/obb.h
+++ b/include/android/obb.h
@@ -14,6 +14,14 @@
* limitations under the License.
*/
+/**
+ * @addtogroup Storage
+ * @{
+ */
+
+/**
+ * @file obb.h
+ */
#ifndef ANDROID_OBB_H
#define ANDROID_OBB_H
@@ -25,9 +33,12 @@ extern "C" {
#endif
struct AObbInfo;
+/** {@link AObbInfo} is an opaque type representing information for obb storage. */
typedef struct AObbInfo AObbInfo;
+/** Flag for an obb file, returned by AObbInfo_getFlags(). */
enum {
+ /** overlay */
AOBBINFO_OVERLAY = 0x0001,
};
@@ -61,3 +72,5 @@ int32_t AObbInfo_getFlags(AObbInfo* obbInfo);
#endif
#endif // ANDROID_OBB_H
+
+/** @} */