Skip to content

Commit

Permalink
Correct NS(U)Integer type
Browse files Browse the repository at this point in the history
  • Loading branch information
PoomSmart committed Dec 30, 2024
1 parent 98a8459 commit a42170b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
4 changes: 2 additions & 2 deletions Foundation/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Binary file modified IDA.til
Binary file not shown.
Binary file modified IDA32.til
Binary file not shown.
1 change: 1 addition & 0 deletions xpc/xpc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a42170b

Please sign in to comment.