]> git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSWindows/RegNames.h
mDNSResponder-107.6.tar.gz
[apple/mdnsresponder.git] / mDNSWindows / RegNames.h
1 /* -*- Mode: C; tab-width: 4 -*-
2 *
3 * Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16
17 Change History (most recent first):
18
19 $Log: RegNames.h,v $
20 Revision 1.3 2006/08/14 23:25:20 cheshire
21 Re-licensed mDNSResponder daemon source code under Apache License, Version 2.0
22
23 Revision 1.2 2005/10/05 18:05:28 herscher
24 <rdar://problem/4192011> Save Wide-Area preferences in a different spot in the registry so they don't get removed when doing an update install.
25
26 Revision 1.1 2005/03/03 02:31:37 shersche
27 Consolidates all registry key names and can safely be included in any component that needs it
28
29
30 */
31
32 //----------------------------------------------------------------------------------------
33 // Registry Constants
34 //----------------------------------------------------------------------------------------
35
36 #if defined(UNICODE)
37
38 # define kServiceParametersNode L"SOFTWARE\\Apple Computer, Inc.\\Bonjour"
39 # define kServiceName L"Bonjour Service"
40 # define kServiceDynDNSBrowseDomains L"BrowseDomains"
41 # define kServiceDynDNSHostNames L"HostNames"
42 # define kServiceDynDNSRegistrationDomains L"RegistrationDomains"
43 # define kServiceDynDNSDomains L"Domains" // value is comma separated list of domains
44 # define kServiceDynDNSEnabled L"Enabled"
45 # define kServiceDynDNSStatus L"Status"
46 # define kServiceManageLLRouting L"ManageLLRouting"
47 # define kServiceCacheEntryCount L"CacheEntryCount"
48 # define kServiceManageFirewall L"ManageFirewall"
49
50 # else
51
52 # define kServiceParametersNode "SOFTWARE\\Apple Computer, Inc.\\Bonjour"
53 # define kServiceName "Bonjour Service"
54 # define kServiceDynDNSBrowseDomains "BrowseDomains"
55 # define kServiceDynDNSHostNames "HostNames"
56 # define kServiceDynDNSRegistrationDomains "RegistrationDomains"
57 # define kServiceDynDNSDomains "Domains" // value is comma separated list of domains
58 # define kServiceDynDNSEnabled "Enabled"
59 # define kServiceDynDNSStatus "Status"
60 # define kServiceManageLLRouting "ManageLLRouting"
61 # define kServiceCacheEntryCount "CacheEntryCount"
62 # define kServiceManageFirewall "ManageFirewall"
63
64 #endif