mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
19 lines
444 B
C
19 lines
444 B
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
|