obb.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. * @addtogroup Storage
  18. * @{
  19. */
  20. /**
  21. * @file obb.h
  22. */
  23. #ifndef ANDROID_OBB_H
  24. #define ANDROID_OBB_H
  25. #include <sys/types.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. struct AObbInfo;
  30. /** {@link AObbInfo} is an opaque type representing information for obb storage. */
  31. typedef struct AObbInfo AObbInfo;
  32. /** Flag for an obb file, returned by AObbInfo_getFlags(). */
  33. enum {
  34. /** overlay */
  35. AOBBINFO_OVERLAY = 0x0001,
  36. };
  37. /**
  38. * Scan an OBB and get information about it.
  39. */
  40. AObbInfo* AObbScanner_getObbInfo(const char* filename);
  41. /**
  42. * Destroy the AObbInfo object. You must call this when finished with the object.
  43. */
  44. void AObbInfo_delete(AObbInfo* obbInfo);
  45. /**
  46. * Get the package name for the OBB.
  47. */
  48. const char* AObbInfo_getPackageName(AObbInfo* obbInfo);
  49. /**
  50. * Get the version of an OBB file.
  51. */
  52. int32_t AObbInfo_getVersion(AObbInfo* obbInfo);
  53. /**
  54. * Get the flags of an OBB file.
  55. */
  56. int32_t AObbInfo_getFlags(AObbInfo* obbInfo);
  57. #ifdef __cplusplus
  58. };
  59. #endif
  60. #endif // ANDROID_OBB_H
  61. /** @} */