From 8daab48e2ac1a0e5932d73c54ca89d3db8f8f28d Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Mon, 23 Nov 2020 01:12:02 -0500 Subject: Remove incorrect defn in psp2/promoterutil.h --- include/user/promoterutil.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'include/user') 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. -- cgit v1.2.3