1 | Common subdirectories: Gridlock/English.lproj and ../Gridlock/English.lproj |
---|
2 | Common subdirectories: Gridlock/French.lproj and ../Gridlock/French.lproj |
---|
3 | Common subdirectories: Gridlock/German.lproj and ../Gridlock/German.lproj |
---|
4 | Common subdirectories: Gridlock/Gridlock.xcodeproj and ../Gridlock/Gridlock.xcodeproj |
---|
5 | Common subdirectories: Gridlock/Japanese.lproj and ../Gridlock/Japanese.lproj |
---|
6 | diff Gridlock/NSObject+Extensions.m ../Gridlock/NSObject+Extensions.m |
---|
7 | 92c92 |
---|
8 | < struct objc_method_list *mlist; |
---|
9 | --- |
---|
10 | > //struct objc_method_list *mlist; |
---|
11 | 95c95,97 |
---|
12 | < |
---|
13 | --- |
---|
14 | > Method *methlist; |
---|
15 | > int count; |
---|
16 | > |
---|
17 | 100,107c102,117 |
---|
18 | < while((mlist = class_nextMethodList(aClass, &iterator)) != NULL) |
---|
19 | < { |
---|
20 | < for(i = 0; i < mlist->method_count; i++) |
---|
21 | < { |
---|
22 | < if((mlist->method_list[i].method_name == aSelector) && (mlist->method_list[i].method_imp != activeIMP)) |
---|
23 | < return mlist->method_list[i].method_imp; |
---|
24 | < } |
---|
25 | < } |
---|
26 | --- |
---|
27 | > methlist = class_copyMethodList(aClass, &count); |
---|
28 | > for (i = 0; i < count; i++) { |
---|
29 | > if((method_getName(methlist[i]) == aSelector) && (method_getImplementation(methlist[i]) != activeIMP)) { |
---|
30 | > IMP unused = method_getImplementation(methlist[i]); |
---|
31 | > free(methlist); |
---|
32 | > } |
---|
33 | > } |
---|
34 | > free(methlist); |
---|
35 | > // while((mlist = class_nextMethodList(aClass, &iterator)) != NULL) |
---|
36 | > // { |
---|
37 | > // for(i = 0; i < mlist->method_count; i++) |
---|
38 | > // { |
---|
39 | > // if((mlist->method_list[i].method_name == aSelector) && (mlist->method_list[i].method_imp != activeIMP)) |
---|
40 | > // return mlist->method_list[i].method_imp; |
---|
41 | > // } |
---|
42 | > // } |
---|
43 | Only in ../Gridlock/: build |
---|
44 | diff Gridlock/osdep.h ../Gridlock/osdep.h |
---|
45 | 133a134 |
---|
46 | > #import <netinet/tcp.h> |
---|