This commit is contained in:
nephacks
2025-06-04 03:22:50 +02:00
parent f234f23848
commit f12416cffd
14243 changed files with 6446499 additions and 26 deletions

40
public/isoundcombiner.h Normal file
View File

@@ -0,0 +1,40 @@
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef ISOUNDCOMBINER_H
#define ISOUNDCOMBINER_H
#ifdef _WIN32
#pragma once
#endif
#include "utlvector.h"
class IFileSystem;
struct CombinerEntry
{
CombinerEntry()
{
wavefile[ 0 ] = 0;
startoffset = 0.0f;
}
char wavefile[ MAX_PATH ];
float startoffset;
};
abstract_class ISoundCombiner
{
public:
virtual ~ISoundCombiner() {}
virtual bool CombineSoundFiles( IFileSystem *filesystem, char const *outfile, CUtlVector< CombinerEntry >& info ) = 0;
virtual bool IsCombinedFileChecksumValid( IFileSystem *filesystem, char const *outfile, CUtlVector< CombinerEntry >& info ) = 0;
};
extern ISoundCombiner *soundcombiner;
#endif // ISOUNDCOMBINER_H