酷店

AidProtocol.h 466B

123456789101112131415161718192021222324
  1. //
  2. // AidProtocol.h
  3. // UtdidSDK
  4. //
  5. // Created by ALLEN on 14-12-22.
  6. // Copyright (c) 2014年 Alvin. All rights reserved.
  7. //
  8. #ifndef AidProtocol_h
  9. #define AidProtocol_h
  10. #define EVENT_REQUEST_STARTED 1000
  11. #define EVENT_REQUEST_SUCCESS 1001
  12. #define EVENT_REQUEST_FAILED 1002
  13. #define EVENT_NETWORK_ERROR 1003
  14. @protocol AidProtocolDelegate <NSObject>
  15. @required
  16. - (void) onAidEventChanged:(NSInteger)eventId
  17. aid:(NSString *)aid;
  18. @end
  19. #endif