mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
20 lines
513 B
C++
20 lines
513 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef SV_UPLOADGAMESTATS_H
|
|
#define SV_UPLOADGAMESTATS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class IUploadGameStats;
|
|
extern IUploadGameStats *g_pUploadGameStats;
|
|
|
|
void AsyncUpload_QueueData( char const *szMapName, uint uiBlobVersion, uint uiBlobSize, const void *pvBlob );
|
|
void AsyncUpload_Shutdown();
|
|
|
|
#endif // SV_UPLOADGAMESTATS_H
|