diff --git a/pkg/whisper/FullParams.go b/pkg/whisper/FullParams.go index cb49136..70cc963 100644 --- a/pkg/whisper/FullParams.go +++ b/pkg/whisper/FullParams.go @@ -86,6 +86,16 @@ func (this *FullParams) RemoveFlags(newflag eFullParamsFlags) { this.cStruct.Flags = this.cStruct.Flags ^ newflag } +func (this *FullParams) SetLanguage(language eLanguage) { + if this == nil { + return + } else if this.cStruct == nil { + return + } + + this.cStruct.Language = language +} + /*using pfnNewSegment = HRESULT( __cdecl* )( iContext* ctx, uint32_t n_new, void* user_data ) noexcept;*/ type NewSegmentCallback_Type func(context *IContext, n_new uint32, user_data unsafe.Pointer) EWhisperHWND