示例#1
0
        public Result GetApplicationLaunchProperty(out LibHac.Arp.ApplicationLaunchProperty launchProperty, ulong processId)
        {
            launchProperty = new LibHac.Arp.ApplicationLaunchProperty();

            launchProperty.BaseStorageId = StorageId.BuiltInUser;
            launchProperty.ApplicationId = new ApplicationId(System.Device.Application.TitleId);

            return(Result.Success);
        }
示例#2
0
        public Result GetApplicationLaunchPropertyWithApplicationId(out LibHac.Arp.ApplicationLaunchProperty launchProperty,
                                                                    ApplicationId applicationId)
        {
            launchProperty = new LibHac.Arp.ApplicationLaunchProperty();

            launchProperty.BaseStorageId = StorageId.BuiltInUser;
            launchProperty.ApplicationId = applicationId;

            return(Result.Success);
        }
示例#3
0
        public Result GetApplicationLaunchProperty(out LibHac.Arp.ApplicationLaunchProperty launchProperty, ulong processId)
        {
            launchProperty = new LibHac.Arp.ApplicationLaunchProperty
            {
                BaseStorageId = StorageId.BuiltInUser,
                ApplicationId = ApplicationId
            };

            return(Result.Success);
        }