summaryrefslogtreecommitdiffstats
path: root/Whisper/API/iTranscribeResult.h
blob: 27e0c0da5dfbaba494bc64b2e7bb14f1b6c22558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "TranscribeStructs.h"

namespace Whisper
{
	__interface __declspec( novtable, uuid( "2871a73f-5ce3-48f8-8779-6582ee11935e" ) ) iTranscribeResult : public IUnknown
	{
		HRESULT __stdcall getSize( sTranscribeLength& rdi ) const;
		const sSegment* __stdcall getSegments() const;
		const sToken* __stdcall getTokens() const;
	};
}