// // ShareKitPlugin.h // // // Created by Erick Camacho on 28/07/11. // MIT Licensed // #import #import "SHK.h" #import "SHKSharer+Phonegap.h" #ifdef CORDOVA_FRAMEWORK #import #import //#import #else #import "CDVPlugin.h" #import "CDVPluginResult.h" //#import "JSONKit.h" #endif @interface ShareKitPlugin : CDVPlugin { } - (void)share:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)isLoggedToTwitter:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)isLoggedToFacebook:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)logoutFromTwitter:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)logoutFromFacebook:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)facebookConnect:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)shareToFacebook:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)shareToTwitter:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)shareToMail:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; @end