superstar_v2/WindowStyles.cs

8 lines
180 B
C#
Raw Permalink Normal View History

2025-04-07 16:54:10 +08:00
namespace DualScreenDemo
{
public static class WindowStyles
{
public const int WS_CHILD = 0x40000000;
public const int WS_CLIPSIBLINGS = 0x04000000;
}
}