You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
544 B
24 lines
544 B
// |
|
// AidProtocol.h |
|
// UtdidSDK |
|
// |
|
// Created by ALLEN on 14-12-22. |
|
// Copyright (c) 2014年 Alvin. All rights reserved. |
|
// |
|
|
|
#ifndef AidProtocol_h |
|
#define AidProtocol_h |
|
#define EVENT_REQUEST_STARTED 1000 |
|
#define EVENT_REQUEST_SUCCESS 1001 |
|
#define EVENT_REQUEST_FAILED 1002 |
|
#define EVENT_NETWORK_ERROR 1003 |
|
#import <Foundation/Foundation.h> |
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@protocol AidProtocolDelegate <NSObject> |
|
@required |
|
- (void) onAidEventChanged:(NSInteger)eventId |
|
aid:(NSString *)aid; |
|
@end |
|
NS_ASSUME_NONNULL_END |
|
#endif
|
|
|