25 lines
487 B
Mathematica
25 lines
487 B
Mathematica
|
|
//
|
||
|
|
// main.m
|
||
|
|
// kordophone
|
||
|
|
//
|
||
|
|
// Created by James Magahern on 11/12/18.
|
||
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
#import "MBIMBridge.h"
|
||
|
|
|
||
|
|
int main(int argc, const char * argv[]) {
|
||
|
|
@autoreleasepool {
|
||
|
|
MBIMBridge *bridge = [MBIMBridge sharedInstance];
|
||
|
|
[bridge connect];
|
||
|
|
|
||
|
|
BOOL running = YES;
|
||
|
|
while (running) {
|
||
|
|
[[NSRunLoop currentRunLoop] run];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|