c75fcbd416
MSIX (the client's format) can't install the host's LocalSystem secure-desktop service or the SudoVDA kernel driver, so the host ships as a signed Inno Setup setup.exe that runs elevated and delegates to the existing idempotent `punktfunk-host service install`. - packaging/windows/punktfunk-host.iss: lay exe into Program Files, optional SudoVDA driver task, run service install/start; [Code] stops+waits the service before file copy on upgrade; uninstall runs service uninstall. - pack-host-installer.ps1: cert (reuses MSIX_CERT_PFX_B64 / self-signed CN=unom), sign inner exe + setup.exe, fetch/stage SudoVDA, run ISCC, export public .cer. - fetch-sudovda.ps1 / install-sudovda.ps1: pinned SudoVDA + nefcon download, cert import, gated device-node create (no phantom dup), pnputil install (warn-not-abort). - nvenc/: synthesize nvencodeapi.lib via llvm-dlltool from a 2-export .def so --features nvenc links with no GPU/SDK at build time. - .gitea/workflows/windows-host.yml: build (nvenc) -> clippy -> ISCC -> sign -> publish setup.exe + .cer to the generic registry pkg punktfunk-host-windows. Tag host-win-v* -> X.Y.Z (+ latest/ alias); main push -> rolling 0.2.<run>. - setup-windows-runner.ps1: provision Inno Setup; docs: installer instructions. SudoVDA/nefcon release URLs+SHA-256s in fetch-sudovda.ps1 are placeholders (baseline v0.2.1) — fetch warns + prints the computed hash until pinned. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
15 lines
906 B
Modula-2
15 lines
906 B
Modula-2
; Module-definition file for the NVENC import library the host links against with `--features nvenc`.
|
|
;
|
|
; The real entry points live in nvEncodeAPI64.dll, which ships with the NVIDIA driver. At LINK time
|
|
; the host only needs an import library exporting these two symbols (see crates/punktfunk-host/build.rs:
|
|
; it emits `cargo:rustc-link-lib=dylib=nvencodeapi` and searches PUNKTFUNK_NVENC_LIB_DIR). No GPU,
|
|
; driver, or NVIDIA Video Codec SDK is required to BUILD — only to run, where the DLL resolves from
|
|
; the installed driver. Generate nvencodeapi.lib from this file with gen-nvenc-importlib.ps1.
|
|
;
|
|
; The LIBRARY line names the DLL the import records point at — required for MSVC `lib.exe /def`
|
|
; (without it the import name would default to "nvenc.dll"). llvm-dlltool takes the name from `-D`.
|
|
LIBRARY nvEncodeAPI64.dll
|
|
EXPORTS
|
|
NvEncodeAPICreateInstance
|
|
NvEncodeAPIGetMaxSupportedVersion
|