Last change
on this file since 112 was
112,
checked in by Nicholas Riley, 19 years ago
|
ICeCoffEE 1.3.2 minus finalized Japanese APEInfo.rtfd. Properly localize installer readme (thanks Slava, you rock!)
|
File size:
1.4 KB
|
Line | |
---|
1 | /* |
---|
2 | * ICeCoffEEShared.h |
---|
3 | * ICeCoffEE APE |
---|
4 | * |
---|
5 | * Created by Nicholas Riley on Mon Jan 20 2003. |
---|
6 | * Copyright (c) 2003 Nicholas Riley. All rights reserved. |
---|
7 | * |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef _H_ICeCoffEEShared |
---|
11 | #define _H_ICeCoffEEShared |
---|
12 | |
---|
13 | #include <CoreFoundation/CoreFoundation.h> |
---|
14 | |
---|
15 | #define ICCF_DEBUG 0 |
---|
16 | #define ICCF_WEBKIT 0 |
---|
17 | |
---|
18 | #if ICCF_DEBUG |
---|
19 | #define ICLog NSLog |
---|
20 | #define ICapeprintf apeprintf |
---|
21 | #else |
---|
22 | #define ICLog (void) |
---|
23 | #define ICapeprintf (void) |
---|
24 | #endif |
---|
25 | |
---|
26 | extern const OSType kICCFCreator; |
---|
27 | |
---|
28 | extern const CFStringRef kICBundleIdentifier; |
---|
29 | |
---|
30 | // ICeCoffEE 1.1/1.2 CFPreferences |
---|
31 | extern const CFStringRef kIC12PrefExcluded; |
---|
32 | extern const CFStringRef kIC12PrefExcludedAppSpecifierBundleID; |
---|
33 | |
---|
34 | // CFPreferences |
---|
35 | extern const CFStringRef kICLastLoadedVersion; // CFString |
---|
36 | extern const CFStringRef kICCommandClickEnabled; // CFNumber (Boolean) |
---|
37 | extern const CFStringRef kICTextBlinkEnabled; // CFNumber (Boolean) |
---|
38 | extern const CFStringRef kICTextBlinkCount; // CFNumber (int) |
---|
39 | extern const CFStringRef kICServicesInContextualMenu; // CFNumber (Boolean) |
---|
40 | extern const CFStringRef kICServicesInMenuBar; // CFNumber (Boolean) |
---|
41 | extern const CFStringRef kICErrorSoundEnabled; // CFNumber (Boolean) |
---|
42 | extern const CFStringRef kICErrorDialogEnabled; // CFNumber (Boolean) |
---|
43 | |
---|
44 | // APEBundleMessages |
---|
45 | extern const CFStringRef kICPreferencesChanged; |
---|
46 | |
---|
47 | // UI constants |
---|
48 | extern const int kICHysteresisPixels; |
---|
49 | extern const int kICBlinkDelayUsecs; |
---|
50 | |
---|
51 | #endif /* _H_ICeCoffEEShared */ |
---|
Note: See
TracBrowser
for help on using the repository browser.