add method to set source language

This commit is contained in:
Timofey Gelazoniya 2023-10-07 22:20:26 +03:00
parent 7d6be4b7d3
commit dacad9a4f6
Signed by: zeldon
GPG Key ID: 047886915281DD2A
1 changed files with 10 additions and 0 deletions

View File

@ -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