Erik B
Erik B
Windows programs have their arguments stored in the structure `Process Environment Block` (PEB), more specifically in `ProcessParameters->CommandLine` which is a `UNICODE_STRING`. The `GetCommandLineW()` function give direct access to the UNICODE_STRING...
Thanks for answering. Just FYI, getting direct access to command line buffer in PEB via `GetCommandLineW()` is often the usual way, at least when it comes to Windows GUI. It...
Thank you for your effort. However, your answer doesn't address the subject. My point was about using the `PEB command line buffer` for option parsing. As I said this could...
I've made a draft solution by changing the parser class to a template class, like this: ``` template class parser ``` and then ``` using Tstring = std::basic_string; using Tstring_view...
First: Thanks for the plugin! I have the error in _8.3_ as well. Testing `from PyQt5.Qt import QObject` works OK AFAICS. Error: `C:\dev\devapps\IDA\IDA.8.3\plugins\daila_plugin.py: Traceback (most recent call last): File "C:/dev/devapps/IDA/IDA.8.3/plugins/daila_plugin.py",...
Thanks for your effort, but the error persist for me. I exchanged the `plugin/daila_plugin.py` with the latest version. Is there a good way to reinstall the plugin?
Thanks (I know nothing about Python). There are still errors but with different messages. I think this error has been up before with a possible solution to upgrade Python. However,...
Another solution is to add curly braces as follows: [argparse-diff.txt](https://github.com/user-attachments/files/18903374/argparse-diff.txt)
Just FYI. I have experienced extremely slow network speed as well, but it seems to be a temporary issue. Perhaps a local network issue? Right now in WSL 1 (2004...