reactos/include/psdk/dhcpcapi.h
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

21 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*/