this repo has no description
1
fork

Configure Feed

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

Create os/state_private.h from scratch

+28
+28
src/kernel/include/os/state_private.h
··· 1 + // This header has been made from scratch by: 2 + // Andrew Hyatt <ahyattdev@icloud.com> 3 + // 4 + // SOSCloudKeychainClient.c needs this 5 + 6 + #ifndef _OS_STATE_PRIVATE_H_ 7 + #define _OS_STATE_PRIVATE_H_ 8 + 9 + #define OS_STATE_DATA_SERIALIZED_NSCF_OBJECT 1 10 + 11 + #define OS_STATE_DATA_SIZE_NEEDED(statelen) statelen 12 + 13 + typedef struct { 14 + int osd_type; 15 + int osd_size; 16 + char *osd_title; 17 + void *osd_data; 18 + } *os_state_data_t; 19 + 20 + typedef struct { 21 + int osh_api; 22 + } *os_state_hints_t; 23 + 24 + typedef os_state_data_t(^os_state_block_t)(os_state_hints_t hints); 25 + 26 + void os_state_add_handler(dispatch_queue_t arg0, os_state_block_t arg1); 27 + 28 + #endif