mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-08-09 00:31:31 +00:00
[idd] input: add virtual HID driver
Build LGInput as an independent UMDF driver with its own entry point, service, tracing, and binary. Expose absolute pointer, relative mouse, and keyboard collections with a guarded report queue. Keep LGIdd as the startup and deployment project. Give it a non-linking build/package dependency on LGInput so F5 stages both driver stacks and installs them together through LGIddInstall, while the two UMDF binaries remain independent for future IPC. Stage both DLLs for the NSIS installer, retain the WDK UMDF remote-debug startup attachment, and move CSRWLock into LGCommon for the input driver's report queue.
This commit is contained in:
@@ -59,7 +59,7 @@ InstallDir "$PROGRAMFILES64\Looking Glass (IDD)"
|
||||
|
||||
;Install and uninstall pages
|
||||
!insertmacro MUI_PAGE_WELCOME
|
||||
!insertmacro MUI_PAGE_LICENSE "LICENSE.txt"
|
||||
!insertmacro MUI_PAGE_LICENSE "LICENSE"
|
||||
!insertmacro MUI_PAGE_DIRECTORY
|
||||
!insertmacro MUI_PAGE_COMPONENTS
|
||||
!insertmacro MUI_PAGE_INSTFILES
|
||||
@@ -172,13 +172,16 @@ Section "!Indirect Display Driver (IDD)" Section1
|
||||
DetailPrint "Extracting IDD"
|
||||
SetOutPath $INSTDIR
|
||||
File lgidd.cat
|
||||
File /oname=LGInput.cat "LGInput\LGInput.cat"
|
||||
File LGIdd.dll
|
||||
File /oname=LGInput.dll "LGInput\LGInput.dll"
|
||||
File LGIdd.inf
|
||||
File /oname=LGInput.inf "LGInput\LGInput.inf"
|
||||
File LGIddHelper.exe
|
||||
File LGIddInstall.exe
|
||||
|
||||
DetailPrint "Extracting support files"
|
||||
File LICENSE.txt
|
||||
File /oname=LICENSE.txt LICENSE
|
||||
WriteUninstaller $INSTDIR\uninstaller.exe
|
||||
|
||||
${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2
|
||||
@@ -232,8 +235,11 @@ Section "Uninstall" Section6
|
||||
Delete "$INSTDIR\ivshmem.sys"
|
||||
Delete "$INSTDIR\ivshmem.pdb"
|
||||
Delete "$INSTDIR\lgidd.cat"
|
||||
Delete "$INSTDIR\LGInput.cat"
|
||||
Delete "$INSTDIR\LGIdd.dll"
|
||||
Delete "$INSTDIR\LGInput.dll"
|
||||
Delete "$INSTDIR\LGIdd.inf"
|
||||
Delete "$INSTDIR\LGInput.inf"
|
||||
Delete "$INSTDIR\LGIddHelper.exe"
|
||||
Delete "$INSTDIR\LGIddInstall.exe"
|
||||
Delete "$INSTDIR\LICENSE.txt"
|
||||
|
||||
Reference in New Issue
Block a user