summaryrefslogtreecommitdiffstats
path: root/Whisper/API/iTranscribeResult.cl.h
blob: ab651789e745749a994d59f8296c570256ce8fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "TranscribeStructs.h"
#include "../../ComLightLib/comLightCommon.h"

namespace Whisper
{
	struct iTranscribeResult : public ComLight::IUnknown
	{
		DEFINE_INTERFACE_ID( "{2871a73f-5ce3-48f8-8779-6582ee11935e}" );

		virtual HRESULT COMLIGHTCALL getSize( sTranscribeLength& rdi ) const = 0;
		virtual const sSegment* COMLIGHTCALL getSegments() const = 0;
		virtual const sToken* COMLIGHTCALL getTokens() const = 0;
	};
}