-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathNativeMethods.cs
More file actions
30 lines (28 loc) · 771 Bytes
/
NativeMethods.cs
File metadata and controls
30 lines (28 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright © 2010-2017 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.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
}
}