diff options
| author | David Spruill <[email protected]> | 2026-01-08 17:51:47 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-08 17:51:47 -0500 |
| commit | c5fc3ca1fd0e00a7e085ef48abfeff9c0c39817e (patch) | |
| tree | 0e650a0fee8027816bbea82ca1fd9b8e3e6ee24a /spb/SpbTestTool/exe/command.h | |
| parent | f88e4fbbd4d2671e5cd77e4f60be7a235326797e (diff) | |
| parent | ed3dbe56378117a15105099870f2397671ad99ab (diff) | |
Merge branch 'develop' into user/daspr/kmodsamplefix
Diffstat (limited to 'spb/SpbTestTool/exe/command.h')
| -rw-r--r-- | spb/SpbTestTool/exe/command.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/spb/SpbTestTool/exe/command.h b/spb/SpbTestTool/exe/command.h index 5e2633bd..d3f887b0 100644 --- a/spb/SpbTestTool/exe/command.h +++ b/spb/SpbTestTool/exe/command.h @@ -183,6 +183,8 @@ public: _In_opt_ string Tag ) : CCommand("open", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -208,6 +210,8 @@ public: _In_opt_ string Tag ) : CCommand("close", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -233,6 +237,8 @@ public: _In_opt_ string Tag ) : CCommand("lock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -258,6 +264,8 @@ public: _In_opt_ string Tag ) : CCommand("unlock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -283,6 +291,8 @@ public: _In_opt_ string Tag ) : CCommand("lockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -308,6 +318,8 @@ public: _In_opt_ string Tag ) : CCommand("unlockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -335,6 +347,8 @@ public: _In_opt_ string Tag ) : CCommand("read", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -392,6 +406,8 @@ public: _In_opt_ string Tag ) : CCommand("write", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -446,6 +462,8 @@ public: _In_opt_ string Tag ) : CCommand("writeread", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -524,6 +542,8 @@ public: _In_opt_ string Tag ) : CCommand("fullduplex", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -597,6 +617,8 @@ public: _In_opt_ string Tag ) : CCommand("signal", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -622,6 +644,8 @@ public: _In_opt_ string Tag ) : CCommand("waitoninterrupt", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } |
