1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_PROXY_RESOLUTION_DHCPCSVC_INIT_WIN_H_
6 #define NET_PROXY_RESOLUTION_DHCPCSVC_INIT_WIN_H_
7 
8 namespace net {
9 
10 // Initialization of the Dhcpcsvc library must happen before any of its
11 // calls are made.  This function will make sure that the appropriate
12 // initialization has been done, and that uninitialization is also
13 // performed at static uninitialization time.
14 //
15 // Note: This initializes only for DHCP, not DHCPv6.
16 void EnsureDhcpcsvcInit();
17 
18 }  // namespace net
19 
20 #endif  // NET_PROXY_RESOLUTION_DHCPCSVC_INIT_WIN_H_
21