From 8c4603c73675958efc960fbd4bb599a2909d106a Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 16 Jan 2023 14:52:43 +0100 Subject: Source codes --- Whisper/API/sLanguageList.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Whisper/API/sLanguageList.h (limited to 'Whisper/API/sLanguageList.h') diff --git a/Whisper/API/sLanguageList.h b/Whisper/API/sLanguageList.h new file mode 100644 index 0000000..49ca596 --- /dev/null +++ b/Whisper/API/sLanguageList.h @@ -0,0 +1,18 @@ +#pragma once +#include + +namespace Whisper +{ + struct sLanguageEntry + { + uint32_t key; + int id; + const char* name; + }; + + struct sLanguageList + { + uint32_t length; + const sLanguageEntry* pointer; + }; +} \ No newline at end of file -- cgit v1.2.3