Exemplo n.º 1
0
Arquivo: main.cpp Projeto: df32/TTS
	HRESULT Pause()				//暂停朗读
	{
		if (!Paused)
		{
			Paused = true;
			return VoiceObj->Pause();
		}
		return 0;
	}
Exemplo n.º 2
0
Arquivo: main.cpp Projeto: df32/TTS
	HRESULT TogglePause()		//切换暂停
	{
		
		Paused = !Paused;

		if (Paused)
			return VoiceObj->Pause();
		else
			return VoiceObj->Resume();
	}