mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-08 10:13:28 +08:00
20 lines
505 B
C
20 lines
505 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef PHONEMECONVERTER_H
|
|||
|
#define PHONEMECONVERTER_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
const char *ConvertPhoneme( int code );
|
|||
|
int TextToPhoneme( const char *text );
|
|||
|
float WeightForPhonemeCode( int code );
|
|||
|
float WeightForPhoneme( char *text );
|
|||
|
|
|||
|
#endif // PHONEMECONVERTER_H
|