From c97fa055217d45e8703a27d182b65ef2975486da Mon Sep 17 00:00:00 2001 From: EXE KL Date: Mon, 9 Jul 2018 17:24:18 +0100 Subject: [PATCH] Add Patch Method to ISteamHTTP include (#22) * Patch Method Merely wanted to add PATCH to the httpmethod enum but I can't create an issue. https://partner.steamgames.com/doc/api/ISteamHTTP#EHTTPMethod * Update SteamWorks.inc shriek --- Pawn/includes/SteamWorks.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/Pawn/includes/SteamWorks.inc b/Pawn/includes/SteamWorks.inc index 5a4c22d..e166ffd 100644 --- a/Pawn/includes/SteamWorks.inc +++ b/Pawn/includes/SteamWorks.inc @@ -130,6 +130,7 @@ enum EHTTPMethod k_EHTTPMethodPUT, k_EHTTPMethodDELETE, k_EHTTPMethodOPTIONS, + k_EHTTPMethodPATCH, // The remaining HTTP methods are not yet supported, per rfc2616 section 5.1.1 only GET and HEAD are required for // a compliant general purpose server. We'll likely add more as we find uses for them.