23 lines
474 B
C
23 lines
474 B
C
//
|
||
// FGIAPServiceUtility.h
|
||
// Pods
|
||
//
|
||
// Created by FoneG on 2021/5/10.
|
||
//
|
||
|
||
#ifndef FGIAPServiceUtility_h
|
||
#define FGIAPServiceUtility_h
|
||
|
||
#define FGDEBUG
|
||
|
||
#if defined (FGDEBUG) && defined (DEBUG)
|
||
#define FGLog(...) NSLog(__VA_ARGS__)
|
||
#else
|
||
#define FGLog(...)
|
||
#endif
|
||
|
||
#define WS(wSelf) __weak typeof(self) wSelf = self
|
||
#define FGIAPServerOverdueErrorCode 11000007 //预留code:订单提交无效,需要删除本地的订单
|
||
|
||
#endif /* FGIAPServiceUtility_h */
|