this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add more definitions into LAPrivateDefines.h

+8 -1
+8 -1
src/LocalAuthentication/Headers/LAPrivateDefines.h
··· 2 2 #define LocalAuthentication_LAPrivateDefines_h 3 3 4 4 #include <LocalAuthentication/LAPublicDefines.h> 5 + #include <CoreFoundation/CFBase.h> 6 + 7 + CF_EXTERN_C_BEGIN 5 8 6 9 /* These aren't actual values, just made-up ones */ 7 10 ··· 9 12 #define kLAErrorNotInteractive -598423 10 13 #define kTKErrorCodeBadParameter -659833 11 14 12 - typedef void* LAFunctionCopyExternalizedContext; 15 + typedef void* (*LAFunctionCopyExternalizedContext)(void*); 16 + 17 + static CFIndex kLAOptionNotInteractive = 1; 18 + 19 + CF_EXTERN_C_END 13 20 14 21 #endif