xLogger
xLogger copied to clipboard
Simple windows API logger
Results
2
xLogger issues
Sort by
recently updated
recently updated
newest added
```txt MessageBoxType uType = MB_ABORTRETRYIGNORE | MB_OK | MB_OKCANCEL | MB_YESNOCANCEL | MB_ICONINFORMATION ``` This `uType` is wrong. It must be `MB_ICONINFORMATION | MB_YESNOCANCEL`. The mask value is `MB_TYPEMASK`.
To specify USE_OLD_STACK the number of arguments in ini files are passed with the minus sign: ``` [ExitProcess] 1=UINT uExitCode ParamCount=-1 ``` And while this does make sense for this...