diff options
author | Reiko Asakura | 2020-11-23 01:12:02 -0500 |
---|---|---|
committer | Reiko Asakura | 2020-11-23 01:12:02 -0500 |
commit | 8daab48e2ac1a0e5932d73c54ca89d3db8f8f28d (patch) | |
tree | 448709c7bffc174751c3f4306d1fd938c6b8fd87 /include/user/promoterutil.h | |
parent | Add SceKernelAllocMemBlockOptInternal (diff) | |
download | vds-libraries-8daab48e2ac1a0e5932d73c54ca89d3db8f8f28d.tar.gz |
Remove incorrect defn in psp2/promoterutil.h
Diffstat (limited to 'include/user/promoterutil.h')
-rw-r--r-- | include/user/promoterutil.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/user/promoterutil.h b/include/user/promoterutil.h index 62de9cd..2526712 100644 --- a/include/user/promoterutil.h +++ b/include/user/promoterutil.h @@ -9,25 +9,24 @@ extern "C" { /** Avalible types for ::ScePromoterUtilityImportParams **/ typedef enum ScePromoterUtilityPackageType { - SCE_PKG_TYPE_VITA = 0x0001, //!< PSVita Apps SCE_PKG_TYPE_PSM = 0x0003, //!< PlayStation Mobile } ScePromoterUtilityPackageType; - + /** Parameters for scePromoterUtilityUpdateLiveArea() */ typedef struct ScePromoterUtilityLAUpdate { char titleid[12]; //!< Target app. char path[128]; //!< Directory of extracted LA update data. } ScePromoterUtilityLAUpdate; - + /** Parameters for scePromoterUtilityPromoteImport() */ typedef struct ScePromoterUtilityImportParams { - char path[0x80]; //!< Install path usually (ux0:/temp/game) + char path[0x80]; //!< Install path usually (ux0:/temp/game) char titleid[0xC]; //!< Game titleid - ScePromoterUtilityPackageType type; //!< Package type + uint32_t type; //!< Package type uint32_t attribute; //!< Additional Attributes (Appears to be 0x1 on PSM content but 0x00 on Vita contents) char reserved[0x1C]; } ScePromoterUtilityImportParams; - + /** * Init the promoter utility. * \note Needs to be called before using the other functions. |