Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
463 B

/*
Copyright (c) 1998, Microsoft Corporation, all rights reserved
Description:
History:
*/
#ifndef _RASDHCP_H_
#define _RASDHCP_H_
#include "rasiphlp.h"
DWORD
RasDhcpInitialize(
VOID
);
VOID
RasDhcpUninitialize(
VOID
);
DWORD
RasDhcpAcquireAddress(
IN HPORT hPort,
OUT IPADDR* pnboIpAddr,
OUT IPADDR* pnboIpMask,
OUT BOOL* pfEasyNet
);
VOID
RasDhcpReleaseAddress(
IN IPADDR nboIpAddr
);
#endif // #ifndef _RASDHCP_H_