mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
25 lines
524 B
Objective-C
25 lines
524 B
Objective-C
//
|
|
// ALTNotificationConnection+Private.h
|
|
// AltServer
|
|
//
|
|
// Created by Riley Testut on 1/10/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
#import "ALTNotificationConnection.h"
|
|
|
|
#include <libimobiledevice/libimobiledevice.h>
|
|
#include <libimobiledevice/notification_proxy.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ALTNotificationConnection ()
|
|
|
|
@property (nonatomic, readonly) np_client_t client;
|
|
|
|
- (instancetype)initWithDevice:(ALTDevice *)device client:(np_client_t)client;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|