mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Cleanup
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2421 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
a99a5d1ffd
commit
a12b7e3a38
2 changed files with 18 additions and 6 deletions
|
@ -656,7 +656,20 @@ namespace GreenshotPlugin.UnmanagedHelpers {
|
|||
BlurRegion = 2,
|
||||
TransitionMaximized = 4
|
||||
}
|
||||
|
||||
|
||||
public enum ClassLongIndex : int {
|
||||
GCL_CBCLSEXTRA = -20, // the size, in bytes, of the extra memory associated with the class. Setting this value does not change the number of extra bytes already allocated.
|
||||
GCL_CBWNDEXTRA = -18, // the size, in bytes, of the extra window memory associated with each window in the class. Setting this value does not change the number of extra bytes already allocated. For information on how to access this memory, see SetWindowLong.
|
||||
GCL_HBRBACKGROUND = -10, // a handle to the background brush associated with the class.
|
||||
GCL_HCURSOR = -12, // a handle to the cursor associated with the class.
|
||||
GCL_HICON = -14, // a handle to the icon associated with the class.
|
||||
GCL_HICONSM = -34, // a handle to the small icon associated with the class.
|
||||
GCL_HMODULE = -16, // a handle to the module that registered the class.
|
||||
GCL_MENUNAME = -8, // the address of the menu name string. The string identifies the menu resource associated with the class.
|
||||
GCL_STYLE = -26, // the window-class style bits.
|
||||
GCL_WNDPROC = -24, // the address of the window procedure, or a handle representing the address of the window procedure. You must use the CallWindowProc function to call the window procedure.
|
||||
}
|
||||
|
||||
public enum WindowsMessages : int {
|
||||
WM_NULL = 0x0000,
|
||||
WM_CREATE = 0x0001,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue