Module: wine
Branch: master
Commit: e6e1bbb4109699ab6f11f58e82ade600c89adb79
URL: https://gitlab.winehq.org/wine/wine/-/commit/e6e1bbb4109699ab6f11f58e82ade6…
Author: Eric Pouech <epouech(a)codeweavers.com>
Date: Mon Apr 15 10:18:45 2024 +0200
cmd: Move operator from CMD_COMMAND to CMD_NODE.
For now, the tree is degenerated into a list (as it was before).
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
---
programs/cmd/builtins.c | 33 ++++++++----
programs/cmd/wcmd.h | 37 ++++++++-----
programs/cmd/wcmdmain.c | 136 +++++++++++++++++++++++++++++++-----------------
3 files changed, 136 insertions(+), 70 deletions(-)
Module: wine
Branch: master
Commit: 7e70824ed5c967be706983e329bdb73b57a6373f
URL: https://gitlab.winehq.org/wine/wine/-/commit/7e70824ed5c967be706983e329bdb7…
Author: Eric Pouech <epouech(a)codeweavers.com>
Date: Thu Apr 11 15:08:30 2024 +0200
cmd: Introduce CMD_NODE structure.
This will allow to separate better the individual command to
be executed (CMD_COMMAND) from the chaining and I/O handling
of several commands (CMD_NODE).
This also renames CMD_LIST into CMD_COMMAND to fit in above
scheme.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
---
programs/cmd/batch.c | 2 +-
programs/cmd/builtins.c | 72 ++++++++++-----------
programs/cmd/wcmd.h | 30 +++++----
programs/cmd/wcmdmain.c | 163 ++++++++++++++++++++++++++----------------------
4 files changed, 144 insertions(+), 123 deletions(-)