diff options
| author | Konstantin <const@const.me> | 2023-02-06 13:02:59 +0100 |
|---|---|---|
| committer | Konstantin <const@const.me> | 2023-02-06 13:02:59 +0100 |
| commit | d9c14a5390598b4c5d86c7f19db23ffc720e88c0 (patch) | |
| tree | 03fd0633a3fa12cb4790fd010be5c49eff5fa7f9 | |
| parent | 7ef711a2d08a7d9ef9e24844e374b1f8985d7694 (diff) | |
Comments
| -rw-r--r-- | WhisperNet/Internal/sCaptureCallbacks.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WhisperNet/Internal/sCaptureCallbacks.cs b/WhisperNet/Internal/sCaptureCallbacks.cs index 0865a5a..35b00df 100644 --- a/WhisperNet/Internal/sCaptureCallbacks.cs +++ b/WhisperNet/Internal/sCaptureCallbacks.cs @@ -3,7 +3,7 @@ namespace Whisper.Internal { /// <summary>Unmanaged code calls this to check for cancellation</summary> - /// <remarks>Return 0 to proceed, or 1 to stop the process and return from Context.runFull method</remarks> + /// <remarks>Return 0 to proceed, or 1 to stop the process and return from Context.runCapture method</remarks> [UnmanagedFunctionPointer( CallingConvention.StdCall )] public delegate int pfnShouldCancel( IntPtr pv ); @@ -18,7 +18,7 @@ namespace Whisper.Internal public pfnShouldCancel shouldCancel; /// <summary>Capture status function pointer</summary> public pfnCaptureStatus captureStatus; - /// <summary>COntext pointer, only needed for C++ compatibility</summary> + /// <summary>Context pointer, only needed for C++ compatibility</summary> public IntPtr pv; } }
\ No newline at end of file |
