this repo has no description
1
fork

Configure Feed

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

Create LocalAuthentication stubs

+37
+24
src/LocalAuthentication/CMakeLists.txt
··· 1 + project(LocalAuthentication) 2 + 3 + add_compile_options( 4 + -nostdinc 5 + ) 6 + 7 + include_directories( 8 + ${CMAKE_CURRENT_SOURCE_DIR}/include 9 + ) 10 + 11 + set(DYLIB_COMPAT_VERSION "1.0.0") 12 + set(DYLIB_CURRENT_VERSION "240.50.25") 13 + 14 + add_framework(LocalAuthentication 15 + FAT 16 + CURRENT_VERSION 17 + VERSION "A" 18 + 19 + SOURCES 20 + src/LACFSupport.c 21 + 22 + DEPENDENCIES 23 + system 24 + )
+13
src/LocalAuthentication/src/LACFSupport.c
··· 1 + #include <LocalAuthentication/LACFSupport.h> 2 + 3 + CFTypeRef LACreateNewContextWithACMContext(CFDataRef acm_context, CFErrorRef *error) { 4 + return NULL; 5 + } 6 + 7 + int LAEvaluateAndUpdateACL(CFTypeRef auth_handle, CFDataRef data, CFDataRef data2, CFDictionaryRef dict, CFDataRef *updated_acl, CFErrorRef *error) { 8 + return 0; 9 + } 10 + 11 + CFDataRef LACopyACMContext(CFTypeRef auth_handle, CFErrorRef *error) { 12 + return NULL; 13 + }