Files
PowerToys/src/README.md

9 lines
539 B
Markdown
Raw Permalink Normal View History

# PowerToys Source Code
## Code organization
2019-09-06 10:03:36 -07:00
The PowerToys are split into DLLs for each PowerToy module ([`modules`](/src/modules) folder), and an executable ([`runner`](/src/runner) folder) that loads and manages those DLLs.
2022-02-17 11:43:47 -08:00
The settings window is a separate executable, contained in [`settings-ui`](/src/settings-ui) folder. It utilizes a WebView to display an HTML-based settings window.
2020-05-26 11:02:36 -04:00
The [`common`](/src/common) contains code for a static library with helper functions, used by both the runner and the PowerToys modules.