APBConfig.h 329 B

12345678910111213141516171819202122
  1. //
  2. // APBConfig.h
  3. // BioAuthEngine
  4. //
  5. // Created by yukun.tyk on 3/8/16.
  6. // Copyright © 2016 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. //是否支持protobuffer
  10. //#define SUPPORT_PB
  11. //#define USE_FPP
  12. #ifdef SUPPORT_PB
  13. static const int kRPCFormat = 1;
  14. #else
  15. static const int kRPCFormat = 0;
  16. #endif