yum-archive/TaSTT-Whisper
High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper
8c4603c
master
1#pragma once 2#include "../AppState.h" 3 4class TranslateCheckbox 5{ 6HWND m_hWnd = nullptr ; 7public : 8operator HWND ()const 9 { 10return m_hWnd ; 11 } 12 13void initialize (HWND owner ,int idc ,AppState & state ); 14 15bool checked (); 16 17void saveSelection (AppState & state ); 18};