Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 17 of file dhcp_reactos.c.
Referenced by GetAdaptersInfo().
{ DWORD Status, Version = 0; Status = DhcpCApiInitialize(&Version); if (Status != ERROR_SUCCESS) { /* We assume that the DHCP service isn't running yet */ *DhcpEnabled = FALSE; *DhcpServer = htonl(INADDR_NONE); *LeaseObtained = 0; *LeaseExpires = 0; return ERROR_SUCCESS; } Status = DhcpRosGetAdapterInfo(AdapterIndex, DhcpEnabled, DhcpServer, LeaseObtained, LeaseExpires); DhcpCApiCleanup(); return Status; }