hank
2019-06-20 9fdbb77fd2d766c9aa88f6753108354592770058
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
19 #import <Foundation/Foundation.h>
20
e81c27 21 NS_ASSUME_NONNULL_BEGIN
H 22
13e53a 23 #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
bad748 24
9febd9 25 /**
13e53a 26  The error domain for all errors from FBSDKShareKit.
9febd9 27
W 28  Error codes from the SDK in the range 200-299 are reserved for this domain.
bad748 29  */
e81c27 30 FOUNDATION_EXPORT NSErrorDomain const FBSDKShareErrorDomain
H 31 NS_SWIFT_NAME(ShareErrorDomain);
13e53a 32
H 33 #else
bad748 34
9febd9 35 /**
13e53a 36  The error domain for all errors from FBSDKShareKit.
H 37
38  Error codes from the SDK in the range 200-299 are reserved for this domain.
bad748 39  */
e81c27 40 FOUNDATION_EXPORT NSString *const FBSDKShareErrorDomain
H 41 NS_SWIFT_NAME(ShareErrorDomain);
13e53a 42
H 43 #endif
44
45 #ifndef NS_ERROR_ENUM
46 #define NS_ERROR_ENUM(_domain, _name) \
47 enum _name: NSInteger _name; \
48 enum __attribute__((ns_error_domain(_domain))) _name: NSInteger
49 #endif
50
51 /**
52  FBSDKShareError
53  Error codes for FBSDKShareErrorDomain.
54  */
55 typedef NS_ERROR_ENUM(FBSDKShareErrorDomain, FBSDKShareError)
bad748 56 {
9febd9 57   /**
13e53a 58    Reserved.
bad748 59    */
13e53a 60   FBSDKShareErrorReserved = 200,
bad748 61
9febd9 62   /**
13e53a 63    The error code for errors from uploading open graph objects.
bad748 64    */
13e53a 65   FBSDKShareErrorOpenGraph,
bad748 66
9febd9 67   /**
13e53a 68    The error code for when a sharing dialog is not available.
9febd9 69
13e53a 70    Use the canShare methods to check for this case before calling show.
bad748 71    */
13e53a 72   FBSDKShareErrorDialogNotAvailable,
bad748 73
9febd9 74   /**
bad748 75    @The error code for unknown errors.
W 76    */
13e53a 77   FBSDKShareErrorUnknown,
e81c27 78 } NS_SWIFT_NAME(ShareError);
13e53a 79
e81c27 80 NS_ASSUME_NONNULL_END