Call Result Methods - adambiser/agk-steam-plugin GitHub Wiki

Some Steamworks methods are asynchronous commands that return call result handles.

Use GetCallResultCode to check the status of a call result and DeleteCallResult once the call result has been processed.

DeleteCallResult

DeleteCallResult(hCallResult as integer)

  • hCallResult - The call result handle to delete.

Deletes a call result and its data.

GetCallResultCode

GetCallResultCode(hCallResult as integer) as integer

  • hCallResult - The call result handle to check.

Returns the result code of the given call result.

Returns: An EResult code.

Reference:
steam_api#EResult