blob: 6732b7d9fdf92a8672654fcd4276c22daa7c4e85 (
plain)
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
28
29
30
|
/*
* Liaison.h
* Liaison
*
* Created by Brian Cully on Fri Feb 14 2003.
* Copyright (c) 2003 Brian Cully. All rights reserved.
*
* -----
*
* This header file contains common #defines for ipc and other
* "configurable" resources.
*/
// We're basically just a front end to this.
#import <LiPlugin/LiPlugin.h>
// That uses this.
#import <Cocoa/Cocoa.h>
// Icons in the browser outline view.
#define LiLocalLibraryIcon @"local.tiff"
#define LiRendezvousGroupIcon @"rendezvous.tiff"
#define LiNormalGroupIcon @"quickpick.tiff"
#define LiNetworkGroupIcon @"Network (Small).tiff"
// For internal drag-and-drop.
#define LiaisonPboardType @"LiaisonPboardType"
// Load extensions and class posers.
#import "NSFileHandleExtensions.h"
#import "LiTableView.h"
|