mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
34
devtools/processgamestats/base_gamestats_parse.h
Normal file
34
devtools/processgamestats/base_gamestats_parse.h
Normal file
@@ -0,0 +1,34 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
//=============================================================================
|
||||
|
||||
#ifndef BASE_GAMESTATS_PARSE_H
|
||||
#define BASE_GAMESTATS_PARSE_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
enum CustomDataReturnCode
|
||||
{
|
||||
CUSTOMDATA_NONE = 0,
|
||||
CUSTOMDATA_FAILED,
|
||||
CUSTOMDATA_SUCCESS
|
||||
};
|
||||
|
||||
class IMySQL;
|
||||
|
||||
struct ParseContext_t
|
||||
{
|
||||
char const *file;
|
||||
char const *gamename;
|
||||
bool describeonly;
|
||||
IMySQL *mysql;
|
||||
int skipcount;
|
||||
bool bCustomDirectoryNotMade;
|
||||
};
|
||||
|
||||
void ProcessPerfData( IMySQL *pSQL, time_t fileTime, char const *pGameName, char const *pPerfString );
|
||||
|
||||
#endif // BASE_GAMESTATS_PARSE_H
|
||||
Reference in New Issue
Block a user