Win32 dictionary extension for VS Code.
Imports the Win32 spell checking dictionary for Code Spell Checker.
This extension will automatically include Code Spell Checker extension.
By default the win32
dictionary is enabled for C
and C++
file types. To enable it for other file types, it is necessary to add it to the dictionaries
section of the configuration or include it as an inline CSpell directive: cspell:dictionaries win32
.
Example: example.md
Sample Code:
```cpp
// Parse the command line parameters
int argc;
LPWSTR* argv = CommandLineToArgvW(GetCommandLineW(), &argc);
pSample->ParseCommandLineArgs(argv, argc);
LocalFree(argv);
```
<!--- cspell:dictionaries win32 --->
Brought to you by Street Side Software