Exemplo n.º 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);
        }
Exemplo n.º 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);
        }
Exemplo n.º 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);
        }