WinINet Functions
The WinINet API provides high-level access to the Internet for HTTP, FTP, and Gopher clients.
Core Functions
- InternetOpen
- Initializes an application that uses WinINet to be a Windows Internet (WinINet) client.
- InternetConnect
- Establishes a connection to the specified Internet resource.
- HttpOpenRequest
- Starts an HTTP request to the Internet resource.
- HttpSendRequest
- Sends the request to the server.
- InternetReadFile
- Reads data from the HINTERNET handle.
- InternetCloseHandle
- Closes the specified Internet handle.
Session Management
- InternetSetOption
- Sets an Internet option for the current session.
- InternetGetOption
- Retrieves an Internet option for the specified Internet handle.
- InternetSetStatusCallback
- Sets the callback function to receive status information and notifications from WinINet.
FTP Functions
- FtpFindFirstFile
- Starts a directory listing on an FTP server.
- FtpFindNextFile
- Continues a directory listing initiated by a call to FtpFindFirstFile.
- FtpCreateFile
- Creates a file on the FTP server.
- FtpDeleteFile
- Deletes a file on an FTP server.