forked from metin2/client
29 lines
822 B
C
29 lines
822 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
namespace NSound
|
||
|
{
|
||
|
extern std::string strResult;
|
||
|
|
||
|
typedef struct SSoundData
|
||
|
{
|
||
|
float fTime;
|
||
|
std::string strSoundFileName;
|
||
|
} TSoundData;
|
||
|
typedef struct SSoundInstance
|
||
|
{
|
||
|
DWORD dwFrame;
|
||
|
std::string strSoundFileName;
|
||
|
} TSoundInstance;
|
||
|
typedef std::vector<TSoundData> TSoundDataVector;
|
||
|
typedef std::vector<TSoundInstance> TSoundInstanceVector;
|
||
|
|
||
|
bool LoadSoundInformationPiece(const char * c_szFileName, TSoundDataVector & rSoundDataVector, const char * c_szPathHeader = NULL);
|
||
|
bool SaveSoundInformationPiece(const char * c_szFileName, TSoundDataVector & rSoundDataVector);
|
||
|
void DataToInstance(const TSoundDataVector & c_rSoundDataVector, TSoundInstanceVector * pSoundInstanceVector);
|
||
|
|
||
|
const char * GetResultString();
|
||
|
void SetResultString(const char * c_pszStr);
|
||
|
};
|