diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-01-16 18:30:29 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-01-16 18:43:04 -0800 |
commit | 805fd7ee0e5dc2939e85c84f78d9890a51982bc0 (patch) | |
tree | e2487cd3d7917fa6a126463e2cc5771295544627 /native/include/android | |
parent | cf18c4788af740773c9b2720a1c4ed5f45454b8e (diff) | |
download | frameworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.zip frameworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.tar.gz frameworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.tar.bz2 |
Add API to get path to OBBs.
Also hide the bitmap thumbnail stuff, we can't support it in its
current form.
And fix some bugs with propagating paths to native code. Yikes!
Change-Id: I13ab37ddbdba5c073489cba5eab035117d3c1574
Diffstat (limited to 'native/include/android')
-rw-r--r-- | native/include/android/native_activity.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/native/include/android/native_activity.h b/native/include/android/native_activity.h index d89bc8b..a361846 100644 --- a/native/include/android/native_activity.h +++ b/native/include/android/native_activity.h @@ -91,6 +91,13 @@ typedef struct ANativeActivity { * uses this to access binary assets bundled inside its own .apk file. */ AAssetManager* assetManager; + + /** + * Available starting with Honeycomb: path to the directory containing + * the application's OBB files (if any). If the app doesn't have any + * OBB files, this directory may not exist. + */ + const char* obbPath; } ANativeActivity; /** |