2009-10-08 22:18:54 +00:00
|
|
|
//
|
|
|
|
// BTstackCocoaAppDelegate.h
|
|
|
|
//
|
|
|
|
// Created by Matthias Ringwald on 10/8/09.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2009-10-11 21:16:00 +00:00
|
|
|
#import "BTInquiryViewController.h"
|
|
|
|
|
2009-10-08 22:18:54 +00:00
|
|
|
@interface BTstackCocoaAppDelegate : NSObject <UIApplicationDelegate> {
|
|
|
|
UIWindow *window;
|
2009-10-11 21:16:00 +00:00
|
|
|
BTInquiryViewController *inqView;
|
|
|
|
bool inqActive;
|
|
|
|
NSMutableArray *devices;
|
|
|
|
uint8_t remoteNameIndex;
|
2009-10-08 22:18:54 +00:00
|
|
|
}
|
|
|
|
|
2009-10-11 21:16:00 +00:00
|
|
|
- (void) handlePacketWithType:(uint8_t) packetType data:(uint8_t*)data len:(uint16_t)len;
|
|
|
|
- (void) startInquiry;
|
|
|
|
|
|
|
|
@property (nonatomic, retain) UIWindow *window;
|
2009-10-08 22:18:54 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|