-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSBAccelerometerInterface.h
31 lines (27 loc) · 999 Bytes
/
SBAccelerometerInterface.h
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
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "SpringBoard-Structs.h"
#import <XXUnknownSuperclass.h> // Unknown library
@class NSMutableArray, NSLock;
@interface SBAccelerometerInterface : XXUnknownSuperclass {
NSLock* _lock;
double _samplingInterval;
double _topDisplayLastUpdateTime;
double _topDisplayInterval;
NSMutableArray* _clients;
BOOL _springBoardWantsEvents;
}
+(void)initialize;
+(id)sharedInstance;
-(id)init;
-(void)dealloc;
-(void)updateSettings;
-(void)clientRequestedAccelerometerEvents:(unsigned)events updateInterval:(double)interval xThreshold:(float)threshold yThreshold:(float)threshold4 zThreshold:(float)threshold5 auditToken:(XXStruct_kUSYWB*)token;
-(void)setSpringBoardWantsEvents:(BOOL)events;
-(void)_clientInvalidated:(id)invalidated;
-(void)accelerometerDataReceived:(double)received x:(float)x y:(float)y z:(float)z type:(unsigned)type;
@end