WindowsAPI(Win32API) Advent Calendar 2015 20日目
WindowsAPI(Win32API) Advent Calendar 2015 - Adventar
HttpOpenRequestは、HTTPリクエストを作成するWindowsAPI・・・。
HttpOpenRequest function (Windows)
セッションハンドル、HTTPメソッド、対象となるオブジェクト、HTTPバージョン、オブジェクトのURLなどを指定する・・・。
たとえば、GETで"http://bgstation0.com/sample/index.html"を取得するリクエストは、
このように作成・・・。
hInternet = 00cc0004 hSession = 00cc0008 hRequest = 00cc000c 続行するには何かキーを押してください . . .
これでリクエストハンドルが返ってくるが、当然このリクエストはサーバに送らないと意味がない・・・。
Sample/HttpSendRequest.cpp at master · bg1bgst333/Sample · GitHub