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 3// Utility class to switch visual state of dialog controls between idle and pending 4class PendingState 5{ 6std ::vector < HWND > editorsWindows ; 7std ::vector < bool > wasEnabled ; 8std ::vector < HWND > pendingWindows ; 9public : 10void initialize (std ::initializer_list < HWND > editors ,std ::initializer_list < HWND > pending ); 11void setPending (bool nowPending ); 12};