summaryrefslogtreecommitdiffstats
path: root/Whisper/API/sLanguageList.h
blob: 49ca5962c15ee593b3046255c1988b4139191a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include <stdint.h>

namespace Whisper
{
	struct sLanguageEntry
	{
		uint32_t key;
		int id;
		const char* name;
	};

	struct sLanguageList
	{
		uint32_t length;
		const sLanguageEntry* pointer;
	};
}