Retain/release MYDirectoryWatcher's _standardizedPath, for non-GC compatibility.
5 // Created by Jens Alfke on 3/3/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
9 #import <Cocoa/Cocoa.h>
10 @class SBApplication, ABPerson;
13 @interface IChatUtils : NSObject
15 + (SBApplication*) app;
18 + (NSString*) activeChatPartner;
19 + (BOOL) sendMessage: (NSString*)msg;
21 + (NSDictionary*) iChatInfoForOnlinePerson: (ABPerson*)abPerson;
22 + (BOOL) isPersonOnline: (ABPerson*)abPerson;
24 + (BOOL) sendMessage: (NSString*)msg toPerson: (ABPerson*)abPerson;
25 + (BOOL) sendMessage: (NSString*)msg toBuddyWithScreenName: (NSString*)screenName;