aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
AgeCommit message (Collapse)Author
2021-05-18cleanup windows config stuff, parse wine argv0Jan200101
2021-05-08add work in progress windows supportJan200101
to run lutris installers on windows soon
2021-04-26rid some warningsJan200101
put brackets around flag logic ignore chdir return use memmove for putting quotes around the dxvk path
2021-04-26implement flags and sort commands by alphabetJan200101
stupid standard --help and --version
2020-12-17replace gnu style quoting with normal quoting, comment command macros, …Jan200101
- gnu style quoting (`text') has been replaced with normal quoting ('text') - the command macros defined in command.h have been commented to explain how they are intended to be used and why they are how they - the macro that generates the command group function now prints a message if the given command has not been found (this probably needs to be extended to the other commands to be consistent)
2020-12-16add more warning flags, correct syntax, add UNUSED macro, […]Jan200101
- added -Wall -Wextra -pedantic to the compile options - various syntax has been corrected: - static is used before const - correct integer types are used in for loops - empty newlines are added - every command has an argc and argv but some don't use them so they are marked as potentially unused if compiled on a GNUC compatible compiler - mark JSONC variables as advanced so they do not show up as generic variables
2020-12-11move command definitions (as well as helpers) to macrosJan200101