11 references to SPLOADOPTIONS
System.Speech (11)
Internal\SapiInterop\SapiGrammar.cs (3)
43internal void LoadCmdFromMemory(IntPtr grammar, SPLOADOPTIONS options) 48internal void LoadDictation(string? pszTopicName, SPLOADOPTIONS options) 73internal void LoadCmdFromMemory2(IntPtr grammar, SPLOADOPTIONS options, string? sharingUri, string? baseUri)
Internal\SapiInterop\SapiRecoInterop.cs (5)
720void LoadCmdFromFile([MarshalAs(UnmanagedType.LPWStr)] string pszFileName, SPLOADOPTIONS Options); 723void LoadCmdFromMemory(IntPtr pGrammar, SPLOADOPTIONS Options); 728void LoadDictation([MarshalAs(UnmanagedType.LPWStr)] string? pszTopicName, SPLOADOPTIONS Options); 744void LoadCmdFromFile2([MarshalAs(UnmanagedType.LPWStr)] string pszFileName, SPLOADOPTIONS Options, [MarshalAs(UnmanagedType.LPWStr)] string pszSharingUri, [MarshalAs(UnmanagedType.LPWStr)] string pszBaseUri); 745void LoadCmdFromMemory2(IntPtr pGrammar, SPLOADOPTIONS Options, [MarshalAs(UnmanagedType.LPWStr)] string? pszSharingUri, [MarshalAs(UnmanagedType.LPWStr)] string? pszBaseUri);
Recognition\RecognizerBase.cs (3)
1448sapiGrammar.LoadDictation(topicName, SPLOADOPTIONS.SPLO_STATIC); 1596sapiGrammar.LoadCmdFromMemory2(dataPtr, SPLOADOPTIONS.SPLO_STATIC, null, baseUri?.ToString()); 1600sapiGrammar.LoadCmdFromMemory(dataPtr, SPLOADOPTIONS.SPLO_STATIC);