InternetDial
[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern int InternetDial(
IntPtr hwndParent,
string lpszConnectoid,
uint dwFlags,
ref int lpdwConnection,
uint dwReserved
);
Microsoft documentation: Link
Last updated