reactos/base/shell/cmd/todo.txt

14 lines
781 B
Plaintext

Things to do
~~~~~~~~~~~~
*Implement Set /P
This is pretty straightforward. When doing this, make sure to take into account the way MS handles "set /A /P foo=5" compared to "set /P /A foo=5".
*Compile as unicode
Not sure what is wrong with it, but probably more than just one thing blocking this. For sure pipes break when it is compiled as unicode.
*Move.c code clean up
It works, but it needs to be cleaned up, the code is long and overly complex for what it needs to do. Also, we can remove the hack to cover for MoveFileEx bug as it isn't a bug anymore.
*Remove Hardcoded buffers
This is mostly done thanks to Greatlord (cmd.c is the hardest spot that is left). Anytime when you are handling a string that is taken from the commandline there should be no limit to the size.