Desktop Functions: Smart Device Functions:
|
Search Results for "AddIPAddress" in [All]iphlpapi1: AddIPAddress
static extern int AddIPAddress(int Address, int IpMask, int IfIndex,
Declare Function AddIPAddress Lib "iphlpapi.dll" (TODO) As TODO
[DllImport("iphlpapi.dll", EntryPoint = "AddIPAddress", SetLastError = true)]
private static extern UInt32 MyAddIPAddress( UInt32 Address, UInt32 IpMaskint, int IfIndex,
AddIPAddress("1.1.100.2", "255.255.0.0", 2);
public void AddIPAddress(String IPAddress, String SubnetMask, int ifIndex)
UInt32 Result = MyAddIPAddress((uint)IPAdd.Address, |