- NDK 0.98, now with versionned headers. Too many changes to list, see the TinyKRNL...
[reactos.git] / reactos / include / dhcpcapi.h
1 #ifndef _DHCPCAPI_H
2 #define _DHCPCAPI_H
3 #if __GNUC__ >= 3
4 #pragma GCC system_header
5 #endif
6
7 #include <windows.h>
8 #include <accctrl.h>
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 VOID STDCALL DhcpLeaseIpAddress( ULONG AdapterIndex );
15 VOID STDCALL DhcpReleaseIpAddressLease( ULONG AdapterIndex );
16 VOID STDCALL DhcpStaticRefreshParams
17 ( ULONG AdapterIndex, ULONG IpAddress, ULONG NetMask );
18
19 #ifdef __cplusplus
20 }
21 #endif
22
23 #endif/*_DHCPCAPI_H*/