// // GrowlNotificationServer.h // Growl // // Created by Ingmar Stein on 15.11.04. // Copyright 2004-2005 The Growl Project. All rights reserved. // // This file is under the BSD License, refer to License.txt for details #import @protocol GrowlNotificationProtocol - (oneway void) registerApplicationWithDictionary:(bycopy NSDictionary *)dict; - (oneway void) postNotificationWithDictionary:(bycopy NSDictionary *)notification; - (bycopy NSString *) growlVersion; @end @interface GrowlPathway : NSObject { } - (void) registerApplicationWithDictionary:(NSDictionary *)dict; - (void) postNotificationWithDictionary:(NSDictionary *)dict; @end