mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
9ea495ba33
svn path=/branches/header-work/; revision=45691
20 lines
399 B
C
20 lines
399 B
C
#ifndef _DHCPCAPI_H
|
|
#define _DHCPCAPI_H
|
|
|
|
#include <windows.h>
|
|
#include <accctrl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
VOID WINAPI DhcpLeaseIpAddress( ULONG AdapterIndex );
|
|
VOID WINAPI DhcpReleaseIpAddressLease( ULONG AdapterIndex );
|
|
VOID WINAPI DhcpStaticRefreshParams
|
|
( ULONG AdapterIndex, ULONG IpAddress, ULONG NetMask );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif/*_DHCPCAPI_H*/
|