// void public void SteamAPI_RegisterCallResult(IntPtr pCallback /*void **/, SteamAPICall_t callback /*SteamAPICall_t*/) { platform.SteamApi_SteamAPI_RegisterCallResult((IntPtr)pCallback, callback.Value); }
// bool public bool SendHTTPRequest(HTTPRequestHandle hRequest /*HTTPRequestHandle*/, ref SteamAPICall_t pCallHandle /*SteamAPICall_t **/) { return(platform.ISteamHTTP_SendHTTPRequest(hRequest.Value, ref pCallHandle.Value)); }
// bool public bool GetAPICallResult(SteamAPICall_t hSteamAPICall /*SteamAPICall_t*/, IntPtr pCallback /*void **/, int cubCallback /*int*/, int iCallbackExpected /*int*/, ref bool pbFailed /*bool **/) { return(platform.ISteamUtils_GetAPICallResult(hSteamAPICall.Value, (IntPtr)pCallback, cubCallback, iCallbackExpected, ref pbFailed)); }
// SteamAPICallFailure public SteamAPICallFailure GetAPICallFailureReason(SteamAPICall_t hSteamAPICall /*SteamAPICall_t*/) { return(platform.ISteamUtils_GetAPICallFailureReason(hSteamAPICall.Value)); }
// bool public bool IsAPICallCompleted(SteamAPICall_t hSteamAPICall /*SteamAPICall_t*/, ref bool pbFailed /*bool **/) { return(platform.ISteamUtils_IsAPICallCompleted(hSteamAPICall.Value, ref pbFailed)); }
internal CallResult(Facepunch.Steamworks.BaseSteamworks steamworks, SteamAPICall_t call) : base(steamworks) { Call = call; }
// bool public bool FileReadAsyncComplete(SteamAPICall_t hReadCall /*SteamAPICall_t*/, IntPtr pvBuffer /*void **/, uint cubToRead /*uint32*/) { return(platform.ISteamRemoteStorage_FileReadAsyncComplete(hReadCall.Value, (IntPtr)pvBuffer, cubToRead)); }