]> git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSWindows/RegNames.h
mDNSResponder-214.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.5 2009/03/30 21:47:35 herscher
21 Fix file corruption during previous checkin
22
23 Revision 1.3 2006/08/14 23:25:20 cheshire
24 Re-licensed mDNSResponder daemon source code under Apache License, Version 2.0
25
26 Revision 1.2 2005/10/05 18:05:28 herscher
27 <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.
28
29 Revision 1.1 2005/03/03 02:31:37 shersche
30 Consolidates all registry key names and can safely be included in any component that needs it
31
32
33 */
34
35 //----------------------------------------------------------------------------------------
36 // Registry Constants
37 //----------------------------------------------------------------------------------------
38
39 #if defined(UNICODE)
40
41 # define kServiceParametersSoftware L"SOFTWARE"
42 # define kServiceParametersAppleComputer L"Apple Computer, Inc."
43 # define kServiceParametersBonjour L"Bonjour"
44 # define kServiceParametersNode L"SOFTWARE\\Apple Inc.\\Bonjour"
45 # define kServiceName L"Bonjour Service"
46 # define kServiceDynDNSBrowseDomains L"BrowseDomains"
47 # define kServiceDynDNSHostNames L"HostNames"
48 # define kServiceDynDNSRegistrationDomains L"RegistrationDomains"
49 # define kServiceDynDNSDomains L"Domains" // value is comma separated list of domains
50 # define kServiceDynDNSEnabled L"Enabled"
51 # define kServiceDynDNSStatus L"Status"
52 # define kServiceManageLLRouting L"ManageLLRouting"
53 # define kServiceCacheEntryCount L"CacheEntryCount"
54 # define kServiceManageFirewall L"ManageFirewall"
55
56 # else
57
58 # define kServiceParametersSoftware "SOFTWARE"
59 # define kServiceParametersAppleComputer "Apple Computer, Inc."
60 # define kServiceParametersBonjour "Bonjour"
61 # define kServiceParametersNode "SOFTWARE\\Apple Inc.\\Bonjour"
62 # define kServiceName "Bonjour Service"
63 # define kServiceDynDNSBrowseDomains "BrowseDomains"
64 # define kServiceDynDNSHostNames "HostNames"
65 # define kServiceDynDNSRegistrationDomains "RegistrationDomains"
66 # define kServiceDynDNSDomains "Domains" // value is comma separated list of domains
67 # define kServiceDynDNSEnabled "Enabled"
68 # define kServiceDynDNSStatus "Status"
69 # define kServiceManageLLRouting "ManageLLRouting"
70 # define kServiceCacheEntryCount "CacheEntryCount"
71 # define kServiceManageFirewall "ManageFirewall"
72
73 #endif