diff --git a/src/Common/src/Interop/ComCtl32/Interop.TB.cs b/src/Common/src/Interop/ComCtl32/Interop.TB.cs index d468b92238f..d942a37e136 100644 --- a/src/Common/src/Interop/ComCtl32/Interop.TB.cs +++ b/src/Common/src/Interop/ComCtl32/Interop.TB.cs @@ -8,10 +8,9 @@ internal static partial class ComCtl32 { public enum TB : int { - FIRST = 0x1000, - GETBUTTONINFOW = FIRST + 63, - SETBUTTONINFOW = FIRST + 64, - INSERTBUTTONW = FIRST + 67, + GETBUTTONINFOW = User32.WM_USER + 63, + SETBUTTONINFOW = User32.WM_USER + 64, + INSERTBUTTONW = User32.WM_USER + 67, } } }