aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/winapi (unfollow)
Commit message (Collapse)Author
2020-10-27code styleEgor Tensin
Don't use brace initialization in constructors, VS 2013 doesn't like that.
2020-10-27VS 2013 workaroundsEgor Tensin
2020-10-27rework Process API & testsEgor Tensin
* Add separate classes ProcessParameters & ShellParameters for Process::create() and Process::shell() methods. * Add a separate "worker" executable. It's used in tests via a fairly complicated scheme, receiving orders to execute via a shared memory region. * Add tests that utilize the Console API, reading console window's screen buffer directly, making for more reliable tests & broader coverage.
2020-10-25Process: add termination methodsEgor Tensin
2020-10-24remove redundant namespace namesEgor Tensin
2020-10-24Handle: add get()/ptr()Egor Tensin
2020-10-23Handle: add static is_invalid() methodEgor Tensin
2020-10-21add Shared{Memory,Object} classesEgor Tensin
2020-10-19Process: add runas()Egor Tensin
2020-10-18stream.hpp -> process_io.hpp, move IO thereEgor Tensin
2020-10-18add Sid classEgor Tensin
It's another newcomer straight from privilege-check.
2020-10-18Process: add get_exe_path()Egor Tensin
2020-10-18Process: add methods to load resource stringsEgor Tensin
2020-10-17process_tests: add stdin redirection testEgor Tensin
2020-10-17process_tests: remove temp filesEgor Tensin
2020-10-17CommandLine: refactoringEgor Tensin
2020-10-17CommandLine: add MSDN test casesEgor Tensin
2020-10-16File: refactoringEgor Tensin
2020-10-16CommandLine: saner APIEgor Tensin
2020-10-16add path.hpp: CanonicalPath class, etc.Egor Tensin
Apparently, relative paths in the Win32 namespace (e.g. \\?\test.txt) are not a thing.
2020-10-16Process: add get_exit_code()Egor Tensin
2020-10-16add a separate Buffer classEgor Tensin
2020-10-16VS 2013 workaroundsEgor Tensin
2020-10-16Process: support pipe redirectionEgor Tensin
2020-10-15WIP: add simple Process classEgor Tensin
2020-10-14cmd_line.cpp: move implementation from cmd_line.hppEgor Tensin
2020-10-14cmd_line.hpp: work around VS 2013Egor Tensin
2020-10-14cmd_line.hpp: rework for this projectEgor Tensin
2020-10-14clang-formatEgor Tensin
2020-10-14copy cmd_line.hpp from privilege-checkEgor Tensin
It's another project of mine, used the version at https://github.com/egor-tensin/privilege-check/tree/2a354e70764fff6a0f8991a4e8913f626b48aeaf.
2020-10-14add error-handling functionsEgor Tensin
They are almost exact copies from my pdb-repo project at https://github.com/egor-tensin/pdb-repo/tree/fa2afec5e7af45e7f1440b2d32c2a4e63dad6a62 I'm currently thinking about renaming it to winapi-debug BTW.
2020-10-14add .clang-formatEgor Tensin
2020-10-14add Handle classEgor Tensin
It's derived from various projects of mine.