Update keywords, docs, and WMI controller imports

- Refreshed keyword lists in expect.txt to reflect recent changes.
- Fixed documentation link casing in design.md.
- Added Copilot attribution note to mccsParserDesign.md.
- Reordered and added using directives in WmiController.cs for clarity and dependency resolution.
This commit is contained in:
Yu Leng
2025-12-12 14:07:28 +08:00
parent 132ed2128e
commit 39c10ad039
4 changed files with 7 additions and 8 deletions

View File

@@ -236,7 +236,6 @@ clientside
CLIPBOARDUPDATE CLIPBOARDUPDATE
CLIPCHILDREN CLIPCHILDREN
CLIPSIBLINGS CLIPSIBLINGS
CLITo
closesocket closesocket
clp clp
CLSCTX CLSCTX
@@ -378,7 +377,6 @@ debugbreak
decryptor decryptor
Dedup Dedup
Deduplicator Deduplicator
Deeplink
DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTBOOTSTRAPPERINSTALLFOLDER
DEFAULTCOLOR DEFAULTCOLOR
DEFAULTFLAGS DEFAULTFLAGS
@@ -727,6 +725,7 @@ HKPD
HKU HKU
HMD HMD
hmenu hmenu
HMON
hmodule hmodule
hmonitor hmonitor
homies homies
@@ -898,6 +897,7 @@ KILLFOCUS
killrunner killrunner
kmph kmph
kvp kvp
KVM
Kybd Kybd
LARGEICON LARGEICON
lastcodeanalysissucceeded lastcodeanalysissucceeded
@@ -1133,7 +1133,6 @@ MWBEx
MYICON MYICON
NAMECHANGE NAMECHANGE
Nanjing Nanjing
Notavailable
namespaceanddescendants namespaceanddescendants
nao nao
NCACTIVATE NCACTIVATE
@@ -1877,7 +1876,6 @@ tlbimp
tlc tlc
tmain tmain
TNP TNP
toolgood
Toolhelp Toolhelp
toolwindow toolwindow
TOPDOWNDIB TOPDOWNDIB
@@ -1939,7 +1937,6 @@ Uniquifies
unitconverter unitconverter
unittests unittests
UNLEN UNLEN
Uninitializes
UNORM UNORM
unremapped unremapped
Unsubscribes Unsubscribes
@@ -1978,7 +1975,6 @@ vcgtq
VCINSTALLDIR VCINSTALLDIR
Vcp Vcp
vcp vcp
vcpcodes
vcpname vcpname
Vcpkg Vcpkg
VCRT VCRT

View File

@@ -674,7 +674,7 @@ if (result.IsValid)
} }
``` ```
> **Detailed Design:** See [MCCS_PARSER_DESIGN.md](./MCCS_PARSER_DESIGN.md) for the complete > **Detailed Design:** See [mccsParserDesign.md](./mccsParserDesign.md) for the complete
> parser architecture, grammar definition, and implementation details. > parser architecture, grammar definition, and implementation details.
--- ---

View File

@@ -4,6 +4,9 @@
This document describes the recursive descent parser implementation for DDC/CI MCCS (Monitor Control Command Set) capabilities strings. This document describes the recursive descent parser implementation for DDC/CI MCCS (Monitor Control Command Set) capabilities strings.
### Attention!
This document and the code implement are generated by Copilot.
## Grammar Definition (BNF) ## Grammar Definition (BNF)
```bnf ```bnf

View File

@@ -9,9 +9,9 @@ using System.Linq;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using ManagedCommon; using ManagedCommon;
using PowerDisplay.Common.Utils;
using PowerDisplay.Common.Interfaces; using PowerDisplay.Common.Interfaces;
using PowerDisplay.Common.Models; using PowerDisplay.Common.Models;
using PowerDisplay.Common.Utils;
using WmiLight; using WmiLight;
using Monitor = PowerDisplay.Common.Models.Monitor; using Monitor = PowerDisplay.Common.Models.Monitor;