⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skypeapi.h

📁 基于SKYPE API 控件的开发示例 JSkype is an JNI implementation which enables Java clients to use the Skyp API
💻 H
字号:
// $Id: SkypeAPI.h,v 1.5 2005/11/28 19:00:28 teelem Exp $////  SkypeAPI.h//  SkypeMac////  Created by Janno Teelem on 12/04/2005.//  Copyright (c) 2005 Skype Technologies S.A. All rights reserved.//#import <Cocoa/Cocoa.h>@protocol SkypeAPIDelegate;@interface SkypeAPI : NSObject {}+ (BOOL)isSkypeRunning;				+ (BOOL)isSkypeAvailable;		// You can only connect and send commands when this method returns YES.								// For example, when Skype is running, but user is logged out, then it returns NO.								+ (void)setSkypeDelegate:(NSObject<SkypeAPIDelegate>*)aDelegate;+ (NSObject<SkypeAPIDelegate>*)skypeDelegate;+ (void)removeSkypeDelegate;+ (void)connect;+ (void)disconnect;+ (void)sendSkypeCommand:(NSString*)aCommandString;@end// delegate protocol@protocol SkypeAPIDelegate- (NSString*)clientApplicationName;@end// delegate informal protocol@interface NSObject (SkypeAPIDelegateInformalProtocol)- (void)skypeNotificationReceived:(NSString*)aNotificationString;- (void)skypeAttachResponse:(unsigned)aAttachResponseCode;				// 0 - failed, 1 - success- (void)skypeBecameAvailable:(NSNotification*)aNotification;- (void)skypeBecameUnavailable:(NSNotification*)aNotification;@end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -