Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
707 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef SV_UPLOADGAMESTATS_H
  7. #define SV_UPLOADGAMESTATS_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. // bool UploadGameStats( char const *cserIP, unsigned int buildnumber, char const *exe, char const *gamedir, char const *mapname,
  12. // unsigned int blobversion, unsigned int blobsize, const void *pvBlobData );
  13. class IUploadGameStats;
  14. extern IUploadGameStats *g_pUploadGameStats;
  15. void AsyncUpload_QueueData( char const *szMapName, uint uiBlobVersion, uint uiBlobSize, const void *pvBlob );
  16. #endif // SV_UPLOADGAMESTATS_H