#pragma oncenamespace Whisper
{using pfnLoadProgress =HRESULT( __stdcall* )(double val,void* pv ) noexcept;// Return S_OK to continue, or S_FALSE to fail with "The operation was canceled by the user" status codeusing pfnCancel =HRESULT( __stdcall* )(void* pv ) noexcept;struct sLoadModelCallbacks
{
pfnLoadProgress progress;
pfnCancel cancel;void* pv;};}