12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // RNFetchBlobConst.h
- // RNFetchBlob
- //
- // Created by Ben Hsieh on 2016/6/6.
- // Copyright © 2016年 suzuri04x2. All rights reserved.
- //
-
- #ifndef RNFetchBlobConst_h
- #define RNFetchBlobConst_h
-
- #import <Foundation/Foundation.h>
-
- // lib event
- extern NSString *const MSG_EVENT;
- extern NSString *const MSG_EVENT_LOG;
- extern NSString *const MSG_EVENT_WARN;
- extern NSString *const MSG_EVENT_ERROR;
-
- extern NSString *const FILE_PREFIX;
- extern NSString *const ASSET_PREFIX;
- extern NSString *const AL_PREFIX;
-
- // config
- extern NSString *const CONFIG_USE_TEMP;
- extern NSString *const CONFIG_FILE_PATH;
- extern NSString *const CONFIG_FILE_EXT;
- extern NSString *const CONFIG_TRUSTY;
- extern NSString *const CONFIG_INDICATOR;
-
- // fs events
- extern NSString *const FS_EVENT_DATA;
- extern NSString *const FS_EVENT_END;
- extern NSString *const FS_EVENT_WARN;
- extern NSString *const FS_EVENT_ERROR;
-
-
-
- #endif /* RNFetchBlobConst_h */
|