this repo has no description
1
fork

Configure Feed

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

Move LocalAuthentication headers to an include folder And add some missing functions

+21 -5
-4
src/LocalAuthentication/Headers/LACFSupport.h
··· 1 - #ifndef LocalAuthentication_LACFSupport_h 2 - #define LocalAuthentication_LACFSupport_h 3 - 4 - #endif
src/LocalAuthentication/Headers/LAContext.h src/LocalAuthentication/include/LocalAuthentication/LAContext.h
src/LocalAuthentication/Headers/LAError.h src/LocalAuthentication/include/LocalAuthentication/LAError.h
src/LocalAuthentication/Headers/LAPrivateDefines.h src/LocalAuthentication/include/LocalAuthentication/LAPrivateDefines.h
src/LocalAuthentication/Headers/LAPublicDefines.h src/LocalAuthentication/include/LocalAuthentication/LAPublicDefines.h
src/LocalAuthentication/Headers/LocalAuthentication.h src/LocalAuthentication/include/LocalAuthentication/LocalAuthentication.h
-1
src/LocalAuthentication/LocalAuthentication
··· 1 - Headers
+21
src/LocalAuthentication/include/LocalAuthentication/LACFSupport.h
··· 1 + #ifndef _LACFSUPPORT_H_ 2 + #define _LACFSUPPORT_H_ 3 + 4 + #include <CoreFoundation/CoreFoundation.h> 5 + 6 + CF_IMPLICIT_BRIDGING_ENABLED 7 + CF_EXTERN_C_BEGIN 8 + 9 + CF_EXPORT 10 + CFTypeRef LACreateNewContextWithACMContext(CFDataRef acm_context, CFErrorRef *error); 11 + 12 + CF_EXPORT 13 + int LAEvaluateAndUpdateACL(CFTypeRef auth_handle, CFDataRef data, CFDataRef data2, CFDictionaryRef dict, CFDataRef *updated_acl, CFErrorRef *error); 14 + 15 + CF_EXPORT 16 + CFDataRef LACopyACMContext(CFTypeRef auth_handle, CFErrorRef *error); 17 + 18 + CF_EXTERN_C_END 19 + CF_IMPLICIT_BRIDGING_DISABLED 20 + 21 + #endif