// Copyright © 2015 The CefSharp Authors. All rights reserved.
|
//
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
namespace CefSharp.WinForms.Internals
|
{
|
/// <summary>
|
/// Class NativeMethods.
|
/// </summary>
|
internal static class NativeMethods
|
{
|
/// <summary>
|
/// The w m_ move
|
/// </summary>
|
public const int WM_MOVE = 0x3;
|
/// <summary>
|
/// The w m_ moving
|
/// </summary>
|
public const int WM_MOVING = 0x216;
|
/// <summary>
|
/// The w m_ activate
|
/// </summary>
|
public const int WM_ACTIVATE = 0x6;
|
}
|
}
|