Android: Added to APK expansion file hint documentation in header file.
parent
68b3b5423e
commit
5e5936822f
|
@ -535,11 +535,25 @@ extern "C" {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Android APK expansion main file version. Should be a string number like "1", "2" etc.
|
* \brief Android APK expansion main file version. Should be a string number like "1", "2" etc.
|
||||||
|
*
|
||||||
|
* Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION.
|
||||||
|
*
|
||||||
|
* If both hints were set then SDL_RWFromFile() will look into expansion files
|
||||||
|
* after a given relative path was not found in the internal storage and assets.
|
||||||
|
*
|
||||||
|
* By default this hint is not set and the APK expansion files are not searched.
|
||||||
*/
|
*/
|
||||||
#define SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"
|
#define SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Android APK expansion patch file version. Should be a string number like "1", "2" etc.
|
* \brief Android APK expansion patch file version. Should be a string number like "1", "2" etc.
|
||||||
|
*
|
||||||
|
* Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION.
|
||||||
|
*
|
||||||
|
* If both hints were set then SDL_RWFromFile() will look into expansion files
|
||||||
|
* after a given relative path was not found in the internal storage and assets.
|
||||||
|
*
|
||||||
|
* By default this hint is not set and the APK expansion files are not searched.
|
||||||
*/
|
*/
|
||||||
#define SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"
|
#define SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue