| 31 | namespace dmResource |
| 32 | { |
| 33 | static AAssetManager* GetAndroidAssetManager() |
| 34 | { |
| 35 | struct android_app* app = dmAndroid::GetAndroidApp(); |
| 36 | if (!app) return 0; |
| 37 | if (!app->activity) return 0; |
| 38 | return app->activity->assetManager; |
| 39 | } |
| 40 | |
| 41 | struct MountInfo |
| 42 | { |
no test coverage detected