]> git.saurik.com Git - winterboard.git/commitdiff
Remove a couple obsolete WBHookSymbols for shared.
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 25 Nov 2014 23:27:05 +0000 (15:27 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Tue, 25 Nov 2014 23:27:40 +0000 (15:27 -0800)
Library.mm

index 80e18697cb329213010cdbcfe423ef5e5fb7104d..28f508558857828113c91a32554ed2772a0e40f5 100644 (file)
@@ -214,8 +214,6 @@ static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
 static UIImage *(*_UIImageWithNameUsingCurrentIdiom)(NSString *name);
 static UIImage *(*_UIImageWithDeviceSpecificName)(NSString *name);
 static NSBundle *(*_UIKitBundle)();
-static bool (*_UIPackedImageTableGetIdentifierForName)(NSString *, int *);
-static int (*_UISharedImageNameGetIdentifier)(NSString *);
 
 static NSMutableDictionary *Images_ = [[NSMutableDictionary alloc] initWithCapacity:64];
 static NSMutableDictionary *Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64];
@@ -2463,8 +2461,6 @@ MSInitialize {
 #endif
 
         WBHookSymbol(image, _UIKitBundle);
-        WBHookSymbol(image, _UIPackedImageTableGetIdentifierForName);
-        WBHookSymbol(image, _UISharedImageNameGetIdentifier);
 
         MSHookFunction(_UIImageWithName, MSHake(_UIImageWithName));