blob: be377ca30eb31d9054000b2d24893ab7a0d0c0bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ Parsed from LocalAuthentication.framework LAError.h }
{$ifdef TYPES}
type
LAError = NSInteger;
LAErrorPtr = ^LAError;
const
LAErrorAuthenticationFailed = kLAErrorAuthenticationFailed;
LAErrorUserCancel = kLAErrorUserCancel;
LAErrorUserFallback = kLAErrorUserFallback;
LAErrorSystemCancel = kLAErrorSystemCancel;
LAErrorPasscodeNotSet = kLAErrorPasscodeNotSet;
LAErrorTouchIDNotAvailable = kLAErrorTouchIDNotAvailable;
LAErrorTouchIDNotEnrolled = kLAErrorTouchIDNotEnrolled;
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
var
LAErrorDomain: NSString { available in 10_10, 8_0 }; cvar; external;
{$endif}
|