xref: /reactos/dll/win32/iphlpapi/dhcp.h (revision 50cf16b3)
1 /*
2  * PROJECT:     ReactOS Networking
3  * LICENSE:     GPL - See COPYING in the top level directory
4  * FILE:        lib/iphlpapi/dhcp_reactos.c
5  * PURPOSE:     DHCP helper functions for ReactOS
6  * COPYRIGHT:   Copyright 2006 Ge van Geldorp <gvg@reactos.org>
7  */
8 
9 #ifndef WINE_DHCP_H_
10 #define WINE_DHCP_H_
11 
12 DWORD getDhcpInfoForAdapter(DWORD AdapterIndex,
13                             PBOOL DhcpEnabled,
14                             PDWORD DhcpServer,
15                             time_t *LeaseObtained,
16                             time_t *LeaseExpires);
17 
18 #endif /* ndef WINE_DHCP_H_ */
19