From 3f53e3bfe4a47f26bddec567ae5ef98ec0409704 Mon Sep 17 00:00:00 2001 From: Aman Karmani Date: Mon, 21 Jul 2025 13:07:23 -0700 Subject: [PATCH] Fix casing of msctf.h header see https://learn.microsoft.com/en-us/windows/win32/api/msctf/ (ran into this cross compiling using a case-sensitive filesystem) --- src/keyboard_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard_win.cc b/src/keyboard_win.cc index a69024e..0780100 100644 --- a/src/keyboard_win.cc +++ b/src/keyboard_win.cc @@ -10,7 +10,7 @@ #include "string_conversion.h" #include -#include +#include #include namespace {