Files
community/InkCanvasForClass/Helpers/DwmCompositionHelper.cs
2025-08-23 21:39:21 +08:00

18 lines
478 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Ink_Canvas.Helpers
{
public class DwmCompositionHelper{
public const string LibraryName = "Dwmapi.dll";
[DllImport(LibraryName, ExactSpelling = true, PreserveSig = false)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DwmIsCompositionEnabled();
}
}