internet abstellen

Code:
DWORD InternetHangUp(
    IN DWORD dwConnection,
    IN DWORD dwReserved
);

Instructs the modem to disconnect from the Internet. 

dwConnection 
Double-word value that contains the number assigned to the connection to be disconnected. 
dwReserved 
Reserved. Must be set to zero.

oder

Code:
InternetAutodialHangup
BOOL InternetAutodialHangup(
    IN DWORD dwReserved
);

Disconnects an automatic dial-up connection. 

Returns TRUE if successful, or FALSE otherwise. 
dwReserved 
Reserved. Must be set to zero.

je nachdem wie die verbindung hergestellt wurde,..

Nicht vergessen... #include <wininet.h>
 
Zurück