This repository was archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheaders.h
More file actions
36 lines (31 loc) · 1.31 KB
/
headers.h
File metadata and controls
36 lines (31 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@interface NFTagInternal
@property (nonatomic,copy,readonly) NSData *tagID;
@end
@interface NFDriverWrapper : NSObject
- (bool)restartDiscovery;
- (void)closeSession;
- (unsigned long long)openSession;
- (bool)disconnectTag:(NFTagInternal *)tag tagRemovalDetect:(bool)arg2;
- (bool)connectTag:(id)arg1;
- (bool)queryTagNDEFCapability:(id)arg1 readable:(bool *)arg2 writable:(bool *)arg3 messageSize:(unsigned int *)arg4 maxMessageSize:(unsigned int *)arg5;
@end
@interface NFBackgroundTagReadingManager {
NFDriverWrapper *_driverWrapper;
}
- (id)_readNDEFFromTag:(NFTagInternal *)tag;
- (void)handleDetectedTags:(id)tags;
- (void)resume;
@end
@interface NFCNDEFMessage : NSObject
@property (nonatomic,copy) NSArray *records;
-(id)initWithNFNdefMessage:(id)message;
@end
@interface NFCNDEFPayload : NSObject
@property (nonatomic,copy) NSData *type; //@synthesize type=_type - In the implementation block
@property (nonatomic,copy) NSData *identifier; //@synthesize identifier=_identifier - In the implementation block
@property (nonatomic,copy) NSData *payload; //@synthesize payload=_payload - In the implementation block
@end
@interface _NFHardwareManager
+ (id)sharedHardwareManager;
- (void)maybeStartNextSession;
@end