├── .gitattributes ├── .gitignore ├── .images └── scan_hardware_change.png ├── VmwpMonitor.vcxproj ├── VmwpMonitor.vcxproj.user ├── readme.md └── src ├── Debug.c ├── Debug.h ├── EmulatedDeviceDefines.h ├── HookUtils ├── Hook.c └── Hook.h ├── VmEmulatedDevices ├── DmaControllerDevice │ ├── DmaControllerDevice.c │ └── DmaControllerDevice.h ├── I8042Device │ ├── I8042Device.c │ └── I8042Device.h ├── IsaBusDevice │ ├── IsaBusDevice.c │ └── IsaBusDevice.h ├── PciBusDevice │ ├── PciBusDevice.c │ └── PciBusDevice.h ├── PicDevice │ ├── PicDevice.c │ └── PicDevice.h ├── PitDevice │ ├── PitDevice.c │ └── PitDevice.h ├── VideoS3Device │ ├── VideoS3Device.c │ └── VideoS3Device.h └── VmEmulatedDevices.h ├── dllmain.c ├── framework.h ├── pch.c └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/scan_hardware_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/.images/scan_hardware_change.png -------------------------------------------------------------------------------- /VmwpMonitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/VmwpMonitor.vcxproj -------------------------------------------------------------------------------- /VmwpMonitor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/VmwpMonitor.vcxproj.user -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/readme.md -------------------------------------------------------------------------------- /src/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/Debug.c -------------------------------------------------------------------------------- /src/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/Debug.h -------------------------------------------------------------------------------- /src/EmulatedDeviceDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/EmulatedDeviceDefines.h -------------------------------------------------------------------------------- /src/HookUtils/Hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/HookUtils/Hook.c -------------------------------------------------------------------------------- /src/HookUtils/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/HookUtils/Hook.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/DmaControllerDevice/DmaControllerDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/DmaControllerDevice/DmaControllerDevice.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/DmaControllerDevice/DmaControllerDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/DmaControllerDevice/DmaControllerDevice.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/I8042Device/I8042Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/I8042Device/I8042Device.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/I8042Device/I8042Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/I8042Device/I8042Device.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/IsaBusDevice/IsaBusDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/IsaBusDevice/IsaBusDevice.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/IsaBusDevice/IsaBusDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/IsaBusDevice/IsaBusDevice.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PciBusDevice/PciBusDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PciBusDevice/PciBusDevice.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PciBusDevice/PciBusDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PciBusDevice/PciBusDevice.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PicDevice/PicDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PicDevice/PicDevice.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PicDevice/PicDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PicDevice/PicDevice.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PitDevice/PitDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PitDevice/PitDevice.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/PitDevice/PitDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/PitDevice/PitDevice.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/VideoS3Device/VideoS3Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/VideoS3Device/VideoS3Device.c -------------------------------------------------------------------------------- /src/VmEmulatedDevices/VideoS3Device/VideoS3Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/VideoS3Device/VideoS3Device.h -------------------------------------------------------------------------------- /src/VmEmulatedDevices/VmEmulatedDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/VmEmulatedDevices/VmEmulatedDevices.h -------------------------------------------------------------------------------- /src/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/dllmain.c -------------------------------------------------------------------------------- /src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/framework.h -------------------------------------------------------------------------------- /src/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/pch.c -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BehroozAbbassi/VmwpMonitor/HEAD/src/pch.h --------------------------------------------------------------------------------