mirror of
https://github.com/darlinghq/darling-libxpc.git
synced 2024-11-26 21:20:28 +00:00
Stub xpc_connection_copy_entitlement_value
This commit is contained in:
parent
d6992c77e9
commit
96d94ab0d0
@ -38,6 +38,8 @@ void xpc_dictionary_set_mach_send(xpc_object_t object, const char* key, mach_por
|
||||
|
||||
#define XPC_PIPE_FLAG_PRIVILEGED XPC_PIPE_PRIVILEGED
|
||||
|
||||
xpc_object_t xpc_connection_copy_entitlement_value(xpc_connection_t connection, const char* entitlement);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include <xpc/private.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int _xpc_runtime_is_app_sandboxed()
|
||||
{
|
||||
@ -175,3 +176,8 @@ xpc_object_t xpc_create_reply_with_format(xpc_object_t original, const char * fo
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
xpc_object_t xpc_connection_copy_entitlement_value(xpc_connection_t connection, const char* entitlement) {
|
||||
printf("%s\n", __PRETTY_FUNCTION__);
|
||||
return NULL;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user