diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/Foundation/Types.h b/Foundation/Types.h index 7553516..e7b917b 100644 --- a/Foundation/Types.h +++ b/Foundation/Types.h @@ -7,8 +7,8 @@ #import "../objc/Types.h" #ifdef __EA64__ -typedef unsigned long long NSUInteger; -typedef long long NSInteger; +typedef unsigned long NSUInteger; +typedef unsigned int NSInteger; #else typedef unsigned int NSUInteger; typedef int NSInteger; diff --git a/IDA.til b/IDA.til index b252578..04fbe22 100644 Binary files a/IDA.til and b/IDA.til differ diff --git a/IDA32.til b/IDA32.til index d248430..4bf04ab 100644 Binary files a/IDA32.til and b/IDA32.til differ diff --git a/xpc/xpc.h b/xpc/xpc.h index 547dac5..c26c898 100644 --- a/xpc/xpc.h +++ b/xpc/xpc.h @@ -137,6 +137,7 @@ void xpc_array_set_date(xpc_object_t xarray, size_t index, int64_t value); void xpc_array_set_value(xpc_object_t xarray, size_t index, xpc_object_t value); void xpc_array_set_pointer(xpc_object_t xarray, size_t index, pointer_t value); +void xpc_dictionary_send_reply(xpc_object_t xdict); void xpc_dictionary_set_mach_send(xpc_object_t, const char *, mach_port_t); void xpc_dictionary_set_uuid(xpc_object_t xdict, const char *key, const uuid_t uuid); void xpc_dictionary_set_connection(xpc_object_t xdict, const char *key, xpc_connection_t connection);