├── .gitignore ├── README.md ├── window_hijack.sln ├── window_hijack ├── includes │ ├── defs │ │ ├── drv.hpp │ │ ├── nt.hpp │ │ └── smart.hpp │ ├── dispatch │ │ ├── control.cpp │ │ ├── control.hpp │ │ └── filler.hpp │ ├── modules │ │ ├── data_getter.cpp │ │ ├── data_getter.hpp │ │ ├── export_getter.cpp │ │ └── export_getter.hpp │ └── utils │ │ ├── drv_utils.cpp │ │ └── drv_utils.hpp ├── sources │ └── drv_main.cpp ├── window_hijack.vcxproj ├── window_hijack.vcxproj.filters └── window_hijack.vcxproj.user └── window_hijack_cli ├── includes ├── defs │ └── cli.hpp ├── interface │ ├── driver.cpp │ ├── driver.hpp │ └── driver_defs.hpp └── renderer │ └── dx_renderer.hpp ├── sources └── cli_main.cpp ├── window_hijack_cli.vcxproj ├── window_hijack_cli.vcxproj.filters └── window_hijack_cli.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/README.md -------------------------------------------------------------------------------- /window_hijack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack.sln -------------------------------------------------------------------------------- /window_hijack/includes/defs/drv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/defs/drv.hpp -------------------------------------------------------------------------------- /window_hijack/includes/defs/nt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/defs/nt.hpp -------------------------------------------------------------------------------- /window_hijack/includes/defs/smart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/defs/smart.hpp -------------------------------------------------------------------------------- /window_hijack/includes/dispatch/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/dispatch/control.cpp -------------------------------------------------------------------------------- /window_hijack/includes/dispatch/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/dispatch/control.hpp -------------------------------------------------------------------------------- /window_hijack/includes/dispatch/filler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/dispatch/filler.hpp -------------------------------------------------------------------------------- /window_hijack/includes/modules/data_getter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/modules/data_getter.cpp -------------------------------------------------------------------------------- /window_hijack/includes/modules/data_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/modules/data_getter.hpp -------------------------------------------------------------------------------- /window_hijack/includes/modules/export_getter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/modules/export_getter.cpp -------------------------------------------------------------------------------- /window_hijack/includes/modules/export_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/modules/export_getter.hpp -------------------------------------------------------------------------------- /window_hijack/includes/utils/drv_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/utils/drv_utils.cpp -------------------------------------------------------------------------------- /window_hijack/includes/utils/drv_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/includes/utils/drv_utils.hpp -------------------------------------------------------------------------------- /window_hijack/sources/drv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/sources/drv_main.cpp -------------------------------------------------------------------------------- /window_hijack/window_hijack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/window_hijack.vcxproj -------------------------------------------------------------------------------- /window_hijack/window_hijack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/window_hijack.vcxproj.filters -------------------------------------------------------------------------------- /window_hijack/window_hijack.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack/window_hijack.vcxproj.user -------------------------------------------------------------------------------- /window_hijack_cli/includes/defs/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/includes/defs/cli.hpp -------------------------------------------------------------------------------- /window_hijack_cli/includes/interface/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/includes/interface/driver.cpp -------------------------------------------------------------------------------- /window_hijack_cli/includes/interface/driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/includes/interface/driver.hpp -------------------------------------------------------------------------------- /window_hijack_cli/includes/interface/driver_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/includes/interface/driver_defs.hpp -------------------------------------------------------------------------------- /window_hijack_cli/includes/renderer/dx_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/includes/renderer/dx_renderer.hpp -------------------------------------------------------------------------------- /window_hijack_cli/sources/cli_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/sources/cli_main.cpp -------------------------------------------------------------------------------- /window_hijack_cli/window_hijack_cli.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/window_hijack_cli.vcxproj -------------------------------------------------------------------------------- /window_hijack_cli/window_hijack_cli.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/window_hijack_cli.vcxproj.filters -------------------------------------------------------------------------------- /window_hijack_cli/window_hijack_cli.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/window_hijack/HEAD/window_hijack_cli/window_hijack_cli.vcxproj.user --------------------------------------------------------------------------------