mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
A bit of refactoring to be able to find some issue...
This commit is contained in:
parent
bef29df3db
commit
42cd533862
308 changed files with 2705 additions and 2454 deletions
15
GreenshotPlugin/UnmanagedHelpers/Enums/WindowLongIndex.cs
Normal file
15
GreenshotPlugin/UnmanagedHelpers/Enums/WindowLongIndex.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace GreenshotPlugin.UnmanagedHelpers.Enums
|
||||
{
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public enum WindowLongIndex
|
||||
{
|
||||
GWL_EXSTYLE = -20, // Sets a new extended window style.
|
||||
GWL_HINSTANCE = -6, // Sets a new application instance handle.
|
||||
GWL_ID = -12, // Sets a new identifier of the child window. The window cannot be a top-level window.
|
||||
GWL_STYLE = -16, // Sets a new window style.
|
||||
GWL_USERDATA = -21, // Sets the user data associated with the window. This data is intended for use by the application that created the window. Its value is initially zero.
|
||||
GWL_WNDPROC = -4 // Sets a new address for the window procedure. You cannot change this attribute if the window does not belong to the same process as the calling thread.
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue