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