This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit WinHttpWS; | |
interface | |
uses Windows; | |
const | |
// flags for WinHttpOpen | |
WINHTTP_FLAG_ASYNC = $10000000; // this session is asynchronous (where supported) | |
WINHTTP_FLAG_SECURE_DEFAULTS = $30000000; // note that this flag also forces async |
OlderNewer