mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
AltXPC uses the private com.apple.authkit.client.internal entitlement to retrieve anisette data.
19 lines
444 B
Objective-C
19 lines
444 B
Objective-C
//
|
|
// AltXPCProtocol.h
|
|
// AltXPC
|
|
//
|
|
// Created by Riley Testut on 12/2/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class ALTAnisetteData;
|
|
|
|
@protocol AltXPCProtocol
|
|
|
|
- (void)ping:(void (^_Nonnull)(void))completionHandler;
|
|
- (void)requestAnisetteDataWithCompletionHandler:(void (^_Nonnull)(ALTAnisetteData *_Nullable anisetteData, NSError *_Nullable error))completionHandler;
|
|
|
|
@end
|