When using the wininet API, if a connection is made twice without closing it in between, will there be 2 connections or will it just re-establish a single connection?
The line that calls the API is as follows (from MDSN):
hConnection = InternetConnect(hOpen, txtServer.Text, INTERNET_INVALID_PORT_NUMBER, _
txtUser, txtPassword, INTERNET_SERVICE_FTP, nFlag, 0)
Any help would be much appreciated.