-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpc.h
27 lines (22 loc) · 771 Bytes
/
pc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Prefix header for all source files of the 'Audioscrobbler' target in the 'Audioscrobbler' project
//
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
enum ASState {
StateStopped,
StatePlaying,
StatePaused,
StateUnknown
};
#define ASGrowlTrackStarted @"Track Started"
#define ASGrowlTrackPaused @"Track Paused"
#define ASGrowlTrackResumed @"Track Resumed"
#define ASGrowlPlaylistEnded @"Playlist Ended"
#define ASGrowlSubmissionStatus @"Scrobble Submission Status"
#define ASGrowlLoveTrackQuery @"Love Track Query"
#define ASGrowlAuthenticationRequired @"Authentication Required"
#define ASGrowlErrorCommunication @"Error Communication"
#define ASGrowlCorrectionSuggestion @"Correction Suggestion"
#define ASGrowlTrackIgnored @"Track Ignored"