]>
Commit | Line | Data |
---|---|---|
14c7c974 A |
1 | /* Copyright (c) 1993 NeXT Computer, Inc. All rights reserved. |
2 | * | |
3 | * configTablePrivate.h - private defintions for configTable mechanism. | |
4 | * | |
5 | * HISTORY | |
6 | * 28-Jan-93 Doug Mitchell at NeXT | |
7 | * Created. | |
8 | */ | |
9 | ||
10 | /* | |
11 | * Max size fo config data array, in bytes. | |
12 | */ | |
13 | #define IO_CONFIG_DATA_SIZE 4096 | |
14 | ||
15 | /* | |
16 | * Location of driver and system config table bundles. | |
17 | */ | |
18 | #define IO_CONFIG_DIR "/usr/Devices/" | |
19 | ||
20 | /* | |
21 | * File names and extensions. | |
22 | */ | |
23 | #define IO_BUNDLE_EXTENSION ".config" | |
24 | #define IO_TABLE_EXTENSION ".table" | |
25 | #define IO_DEFAULT_TABLE_FILENAME "Default.table" | |
26 | #define IO_INSPECTOR_FILENAME "Inspector.nib" | |
27 | #define IO_SYSTEM_CONFIG_FILE "/usr/Devices/System.config/Instance0.table" | |
28 | #define IO_SYSTEM_CONFIG_DIR "/usr/Devices/System.config/" | |
29 | #define IO_BINARY_EXTENSION "_reloc" | |
30 |