Functions

extern "user32" fn AdjustWindowRectEx(*RECT, DWORD, BOOL, DWORD) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn CreateWindowExA(DWORD, [*:0]const u8, [*:0]const u8, DWORD, i32, i32, i32, i32, ?HWND, ?HMENU, HINSTANCE, ?LPVOID) callconv(WINAPI) ?HWND

No documentation provided.

extern "user32" fn CreateWindowExW(DWORD, [*:0]const u16, [*:0]const u16, DWORD, i32, i32, i32, i32, ?HWND, ?HMENU, HINSTANCE, ?LPVOID) callconv(WINAPI) ?HWND

No documentation provided.

extern "user32" fn DefWindowProcA(HWND, UINT, WPARAM, LPARAM) callconv(WINAPI) LRESULT

No documentation provided.

extern "user32" fn DefWindowProcW(HWND, UINT, WPARAM, LPARAM) callconv(WINAPI) LRESULT

No documentation provided.

extern "user32" fn DestroyWindow(HWND) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn DispatchMessageA(*const MSG) callconv(WINAPI) LRESULT

No documentation provided.

extern "user32" fn DispatchMessageW(*const MSG) callconv(WINAPI) LRESULT

No documentation provided.

extern "user32" fn GetDC(?HWND) callconv(WINAPI) ?HDC

No documentation provided.

extern "user32" fn GetMessageA(*MSG, ?HWND, UINT, UINT) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn GetMessageW(*MSG, ?HWND, UINT, UINT) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn GetWindowLongA(HWND, i32) callconv(WINAPI) LONG

No documentation provided.

extern "user32" fn GetWindowLongPtrA(HWND, i32) callconv(WINAPI) LONG_PTR

No documentation provided.

extern "user32" fn GetWindowLongPtrW(HWND, i32) callconv(WINAPI) LONG_PTR

No documentation provided.

extern "user32" fn GetWindowLongW(HWND, i32) callconv(WINAPI) LONG

No documentation provided.

extern "user32" fn MessageBoxA(?HWND, [*:0]const u8, [*:0]const u8, UINT) callconv(WINAPI) i32

No documentation provided.

extern "user32" fn MessageBoxW(?HWND, [*:0]const u16, ?[*:0]const u16, UINT) callconv(WINAPI) i32

No documentation provided.

extern "user32" fn PeekMessageA(*MSG, ?HWND, UINT, UINT, UINT) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn PeekMessageW(*MSG, ?HWND, UINT, UINT, UINT) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn PostQuitMessage(i32) callconv(WINAPI) void

No documentation provided.

extern "user32" fn RegisterClassExA(*const WNDCLASSEXA) callconv(WINAPI) ATOM

No documentation provided.

extern "user32" fn RegisterClassExW(*const WNDCLASSEXW) callconv(WINAPI) ATOM

No documentation provided.

extern "user32" fn ReleaseDC(?HWND, HDC) callconv(WINAPI) i32

No documentation provided.

extern "user32" fn SetWindowLongA(HWND, i32, LONG) callconv(WINAPI) LONG

No documentation provided.

extern "user32" fn SetWindowLongPtrA(HWND, i32, LONG_PTR) callconv(WINAPI) LONG_PTR

No documentation provided.

extern "user32" fn SetWindowLongPtrW(HWND, i32, LONG_PTR) callconv(WINAPI) LONG_PTR

No documentation provided.

extern "user32" fn SetWindowLongW(HWND, i32, LONG) callconv(WINAPI) LONG

No documentation provided.

extern "user32" fn ShowWindow(HWND, i32) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn TranslateMessage(*const MSG) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn UnregisterClassA([*:0]const u8, HINSTANCE) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn UnregisterClassW([*:0]const u16, HINSTANCE) callconv(WINAPI) BOOL

No documentation provided.

extern "user32" fn UpdateWindow(HWND) callconv(WINAPI) BOOL

No documentation provided.

fn adjustWindowRectEx(lpRect: *RECT, dwStyle: u32, bMenu: bool, dwExStyle: u32) !void

No documentation provided.

fn createWindowExA(dwExStyle: u32, lpClassName: [*:0]const u8, lpWindowName: [*:0]const u8, dwStyle: u32, X: i32, Y: i32, nWidth: i32, nHeight: i32, hWindParent: ?HWND, hMenu: ?HMENU, hInstance: HINSTANCE, lpParam: ?*anyopaque) !HWND

No documentation provided.

fn createWindowExW(dwExStyle: u32, lpClassName: [*:0]const u16, lpWindowName: [*:0]const u16, dwStyle: u32, X: i32, Y: i32, nWidth: i32, nHeight: i32, hWindParent: ?HWND, hMenu: ?HMENU, hInstance: HINSTANCE, lpParam: ?*anyopaque) !HWND

No documentation provided.

fn defWindowProcA(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) LRESULT

No documentation provided.

fn defWindowProcW(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) LRESULT

No documentation provided.

fn destroyWindow(hWnd: HWND) !void

No documentation provided.

fn dispatchMessageA(lpMsg: *const MSG) LRESULT

No documentation provided.

fn dispatchMessageW(lpMsg: *const MSG) LRESULT

No documentation provided.

fn getDC(hWnd: ?HWND) !HDC

No documentation provided.

fn getMessageA(lpMsg: *MSG, hWnd: ?HWND, wMsgFilterMin: u32, wMsgFilterMax: u32) !void

No documentation provided.

fn getMessageW(lpMsg: *MSG, hWnd: ?HWND, wMsgFilterMin: u32, wMsgFilterMax: u32) !void

No documentation provided.

fn getWindowLongA(hWnd: HWND, nIndex: i32) !i32

No documentation provided.

fn getWindowLongPtrA(hWnd: HWND, nIndex: i32) !isize

No documentation provided.

fn getWindowLongPtrW(hWnd: HWND, nIndex: i32) !isize

No documentation provided.

fn getWindowLongW(hWnd: HWND, nIndex: i32) !i32

No documentation provided.

fn messageBoxA(hWnd: ?HWND, lpText: [*:0]const u8, lpCaption: [*:0]const u8, uType: u32) !i32

No documentation provided.

fn messageBoxW(hWnd: ?HWND, lpText: [*:0]const u16, lpCaption: [*:0]const u16, uType: u32) !i32

No documentation provided.

fn peekMessageA(lpMsg: *MSG, hWnd: ?HWND, wMsgFilterMin: u32, wMsgFilterMax: u32, wRemoveMsg: u32) !bool

No documentation provided.

fn peekMessageW(lpMsg: *MSG, hWnd: ?HWND, wMsgFilterMin: u32, wMsgFilterMax: u32, wRemoveMsg: u32) !bool

No documentation provided.

fn postQuitMessage(nExitCode: i32) void

No documentation provided.

fn registerClassExA(window_class: *const WNDCLASSEXA) !ATOM

No documentation provided.

fn registerClassExW(window_class: *const WNDCLASSEXW) !ATOM

No documentation provided.

fn releaseDC(hWnd: ?HWND, hDC: HDC) bool

No documentation provided.

fn setWindowLongA(hWnd: HWND, nIndex: i32, dwNewLong: i32) !i32

No documentation provided.

fn setWindowLongPtrA(hWnd: HWND, nIndex: i32, dwNewLong: isize) !isize

No documentation provided.

fn setWindowLongPtrW(hWnd: HWND, nIndex: i32, dwNewLong: isize) !isize

No documentation provided.

fn setWindowLongW(hWnd: HWND, nIndex: i32, dwNewLong: i32) !i32

No documentation provided.

fn showWindow(hWnd: HWND, nCmdShow: i32) bool

No documentation provided.

fn translateMessage(lpMsg: *const MSG) bool

No documentation provided.

fn unregisterClassA(lpClassName: [*:0]const u8, hInstance: HINSTANCE) !void

No documentation provided.

fn unregisterClassW(lpClassName: [*:0]const u16, hInstance: HINSTANCE) !void

No documentation provided.

fn updateWindow(hWnd: HWND) !void

No documentation provided.

Values

ACM_OPENA
comptime_int
ACM_OPENW
comptime_int
ACM_PLAY
comptime_int
ACM_STOP
comptime_int
BFFM_ENABLEOK
comptime_int
BFFM_SETSELECTIONA
comptime_int
BFFM_SETSELECTIONW
comptime_int
BFFM_SETSTATUSTEXTA
comptime_int
BFFM_SETSTATUSTEXTW
comptime_int
BM_CLICK
comptime_int
BM_GETCHECK
comptime_int
BM_GETIMAGE
comptime_int
BM_GETSTATE
comptime_int
BM_SETCHECK
comptime_int
BM_SETDONTCLICK
comptime_int
BM_SETIMAGE
comptime_int
BM_SETSTATE
comptime_int
BM_SETSTYLE
comptime_int
CBEM_GETCOMBOCONTROL
comptime_int
CBEM_GETEDITCONTROL
comptime_int
CBEM_GETEXSTYLE
comptime_int
CBEM_GETEXTENDEDSTYLE
comptime_int
CBEM_GETIMAGELIST
comptime_int
CBEM_GETITEMA
comptime_int
CBEM_GETITEMW
comptime_int
CBEM_HASEDITCHANGED
comptime_int
CBEM_INSERTITEMA
comptime_int
CBEM_INSERTITEMW
comptime_int
CBEM_SETEXSTYLE
comptime_int
CBEM_SETEXTENDEDSTYLE
comptime_int
CBEM_SETIMAGELIST
comptime_int
CBEM_SETITEMA
comptime_int
CBEM_SETITEMW
comptime_int
CDM_GETFILEPATH
comptime_int
CDM_GETFOLDERIDLIST
comptime_int
CDM_GETFOLDERPATH
comptime_int
CDM_GETSPEC
comptime_int
CDM_HIDECONTROL
comptime_int
CDM_SETCONTROLTEXT
comptime_int
CDM_SETDEFEXT
comptime_int
CS_BYTEALIGNCLIENT
comptime_int
CS_BYTEALIGNWINDOW
comptime_int
CS_CLASSDC
comptime_int
CS_DBLCLKS
comptime_int
CS_GLOBALCLASS
comptime_int
CS_HREDRAW
comptime_int
CS_NOCLOSE
comptime_int
CS_OWNDC
comptime_int
CS_PARENTDC
comptime_int
CS_SAVEBITS
comptime_int
CS_VREDRAW
comptime_int
CW_USEDEFAULT
i32
DDM_BEGIN
comptime_int
DDM_CLOSE
comptime_int
DDM_DRAW
comptime_int
DDM_END
comptime_int
DDM_SETFMT
comptime_int
DL_BEGINDRAG
comptime_int
DL_CANCELDRAG
comptime_int
DL_DRAGGING
comptime_int
DL_DROPPED
comptime_int
DM_GETDEFID
comptime_int
DM_REPOSITION
comptime_int
DM_SETDEFID
comptime_int
EM_AUTOURLDETECT
comptime_int
EM_CANPASTE
comptime_int
EM_CANREDO
comptime_int
EM_CANUNDO
comptime_int
EM_CHARFROMPOS
comptime_int
EM_CONVPOSITION
comptime_int
EM_DISPLAYBAND
comptime_int
EM_EMPTYUNDOBUFFER
comptime_int
EM_EXGETSEL
comptime_int
EM_EXLIMITTEXT
comptime_int
EM_EXLINEFROMCHAR
comptime_int
EM_EXSETSEL
comptime_int
EM_FINDTEXT
comptime_int
EM_FINDTEXTEX
comptime_int
EM_FINDTEXTEXW
comptime_int
EM_FINDTEXTW
comptime_int
EM_FINDWORDBREAK
comptime_int
EM_FMTLINES
comptime_int
EM_FORMATRANGE
comptime_int
EM_GETAUTOURLDETECT
comptime_int
EM_GETBIDIOPTIONS
comptime_int
EM_GETCHARFORMAT
comptime_int
EM_GETCTFMODEBIAS
comptime_int
EM_GETCTFOPENSTATUS
comptime_int
EM_GETEDITSTYLE
comptime_int
EM_GETEVENTMASK
comptime_int
EM_GETFIRSTVISIBLELINE
comptime_int
EM_GETHANDLE
comptime_int
EM_GETHYPHENATEINFO
comptime_int
EM_GETIMECOLOR
comptime_int
EM_GETIMECOMPMODE
comptime_int
EM_GETIMECOMPTEXT
comptime_int
EM_GETIMEMODEBIAS
comptime_int
EM_GETIMEOPTIONS
comptime_int
EM_GETIMEPROPERTY
comptime_int
EM_GETIMESTATUS
comptime_int
EM_GETLANGOPTIONS
comptime_int
EM_GETLIMITTEXT
comptime_int
EM_GETLINE
comptime_int
EM_GETLINECOUNT
comptime_int
EM_GETMARGINS
comptime_int
EM_GETMODIFY
comptime_int
EM_GETOLEINTERFACE
comptime_int
EM_GETOPTIONS
comptime_int
EM_GETPAGE
comptime_int
EM_GETPAGEROTATE
comptime_int
EM_GETPARAFORMAT
comptime_int
EM_GETPASSWORDCHAR
comptime_int
EM_GETPUNCTUATION
comptime_int
EM_GETQUERYRTFOBJ
comptime_int
EM_GETRECT
comptime_int
EM_GETREDONAME
comptime_int
EM_GETSCROLLPOS
comptime_int
EM_GETSEL
comptime_int
EM_GETSELTEXT
comptime_int
EM_GETTEXTEX
comptime_int
EM_GETTEXTLENGTHEX
comptime_int
EM_GETTEXTMODE
comptime_int
EM_GETTEXTRANGE
comptime_int
EM_GETTHUMB
comptime_int
EM_GETTYPOGRAPHYOPTIONS
comptime_int
EM_GETUNDONAME
comptime_int
EM_GETVIEWKIND
comptime_int
EM_GETWORDBREAKPROC
comptime_int
EM_GETWORDBREAKPROCEX
comptime_int
EM_GETWORDWRAPMODE
comptime_int
EM_GETZOOM
comptime_int
EM_HIDESELECTION
comptime_int
EM_ISIME
comptime_int
EM_LIMITTEXT
comptime_int
EM_LINEFROMCHAR
comptime_int
EM_LINEINDEX
comptime_int
EM_LINELENGTH
comptime_int
EM_LINESCROLL
comptime_int
EM_OUTLINE
comptime_int
EM_PASTESPECIAL
comptime_int
EM_POSFROMCHAR
comptime_int
EM_RECONVERSION
comptime_int
EM_REDO
comptime_int
EM_REPLACESEL
comptime_int
EM_REQUESTRESIZE
comptime_int
EM_SCROLL
comptime_int
EM_SCROLLCARET
comptime_int
EM_SELECTIONTYPE
comptime_int
EM_SETBIDIOPTIONS
comptime_int
EM_SETBKGNDCOLOR
comptime_int
EM_SETCHARFORMAT
comptime_int
EM_SETCTFMODEBIAS
comptime_int
EM_SETCTFOPENSTATUS
comptime_int
EM_SETEDITSTYLE
comptime_int
EM_SETEVENTMASK
comptime_int
EM_SETFONT
comptime_int
EM_SETFONTSIZE
comptime_int
EM_SETHANDLE
comptime_int
EM_SETHYPHENATEINFO
comptime_int
EM_SETIMECOLOR
comptime_int
EM_SETIMEMODEBIAS
comptime_int
EM_SETIMEOPTIONS
comptime_int
EM_SETIMESTATUS
comptime_int
EM_SETLANGOPTIONS
comptime_int
EM_SETLIMITTEXT
comptime_int
EM_SETMARGINS
comptime_int
EM_SETMODIFY
comptime_int
EM_SETOLECALLBACK
comptime_int
EM_SETOPTIONS
comptime_int
EM_SETPAGE
comptime_int
EM_SETPAGEROTATE
comptime_int
EM_SETPALETTE
comptime_int
EM_SETPARAFORMAT
comptime_int
EM_SETPASSWORDCHAR
comptime_int
EM_SETPUNCTUATION
comptime_int
EM_SETQUERYRTFOBJ
comptime_int
EM_SETREADONLY
comptime_int
EM_SETRECT
comptime_int
EM_SETRECTNP
comptime_int
EM_SETSCROLLPOS
comptime_int
EM_SETSEL
comptime_int
EM_SETTABSTOPS
comptime_int
EM_SETTARGETDEVICE
comptime_int
EM_SETTEXTEX
comptime_int
EM_SETTEXTMODE
comptime_int
EM_SETTYPOGRAPHYOPTIONS
comptime_int
EM_SETUNDOLIMIT
comptime_int
EM_SETVIEWKIND
comptime_int
EM_SETWORDBREAK
comptime_int
EM_SETWORDBREAKPROC
comptime_int
EM_SETWORDBREAKPROCEX
comptime_int
EM_SETWORDWRAPMODE
comptime_int
EM_SETZOOM
comptime_int
EM_SHOWSCROLLBAR
comptime_int
EM_STOPGROUPTYPING
comptime_int
EM_STREAMIN
comptime_int
EM_STREAMOUT
comptime_int
EM_UNDO
comptime_int
FM_GETDRIVEINFOA
comptime_int
FM_GETDRIVEINFOW
comptime_int
FM_GETFILESELA
comptime_int
FM_GETFILESELLFNA
comptime_int
FM_GETFILESELLFNW
comptime_int
FM_GETFILESELW
comptime_int
FM_GETFOCUS
comptime_int
FM_GETSELCOUNT
comptime_int
FM_GETSELCOUNTLFN
comptime_int
FM_REFRESH_WINDOWS
comptime_int
FM_RELOAD_EXTENSIONS
comptime_int
GWL_EXSTYLE
comptime_int
GWL_HINSTANCE
comptime_int
GWL_HWNDPARENT
comptime_int
GWL_ID
comptime_int
GWL_STYLE
comptime_int
GWL_USERDATA
comptime_int
GWL_WNDPROC
comptime_int
HKM_GETHOTKEY
comptime_int
HKM_SETHOTKEY
comptime_int
HKM_SETRULES
comptime_int
IDABORT
comptime_int
IDCANCEL
comptime_int
IDCLOSE
comptime_int
IDCONTINUE
comptime_int
IDHELP
comptime_int
IDIGNORE
comptime_int
IDNO
comptime_int
IDOK
comptime_int
IDRETRY
comptime_int
IDTRYAGAIN
comptime_int
IDYES
comptime_int
IE_DOCOMMAND
comptime_int
IE_GETAPPDATA
comptime_int
IE_GETBKGND
comptime_int
IE_GETCOMMAND
comptime_int
IE_GETCOUNT
comptime_int
IE_GETDRAWOPTS
comptime_int
IE_GETERASERTIP
comptime_int
IE_GETFORMAT
comptime_int
IE_GETGESTURE
comptime_int
IE_GETGRIDORIGIN
comptime_int
IE_GETGRIDPEN
comptime_int
IE_GETGRIDSIZE
comptime_int
IE_GETINK
comptime_int
IE_GETINKINPUT
comptime_int
IE_GETINKRECT
comptime_int
IE_GETMENU
comptime_int
IE_GETMODE
comptime_int
IE_GETNOTIFY
comptime_int
IE_GETPAINTDC
comptime_int
IE_GETPDEVENT
comptime_int
IE_GETPENTIP
comptime_int
IE_GETRECOG
comptime_int
IE_GETSECURITY
comptime_int
IE_GETSEL
comptime_int
IE_GETSELCOUNT
comptime_int
IE_GETSELITEMS
comptime_int
IE_GETSTYLE
comptime_int
IE_SETAPPDATA
comptime_int
IE_SETBKGND
comptime_int
IE_SETDRAWOPTS
comptime_int
IE_SETERASERTIP
comptime_int
IE_SETFORMAT
comptime_int
IE_SETGRIDORIGIN
comptime_int
IE_SETGRIDPEN
comptime_int
IE_SETGRIDSIZE
comptime_int
IE_SETINK
comptime_int
IE_SETINKINPUT
comptime_int
IE_SETMODE
comptime_int
IE_SETNOTIFY
comptime_int
IE_SETPENTIP
comptime_int
IE_SETRECOG
comptime_int
IE_SETSECURITY
comptime_int
IE_SETSEL
comptime_int
IPM_CLEARADDRESS
comptime_int
IPM_GETADDRESS
comptime_int
IPM_ISBLANK
comptime_int
IPM_SETADDRESS
comptime_int
IPM_SETFOCUS
comptime_int
IPM_SETRANGE
comptime_int
LVM_APPROXIMATEVIEWRECT
comptime_int
LVM_ARRANGE
comptime_int
LVM_CANCELEDITLABEL
comptime_int
LVM_CREATEDRAGIMAGE
comptime_int
LVM_DELETEALLITEMS
comptime_int
LVM_DELETECOLUMN
comptime_int
LVM_DELETEITEM
comptime_int
LVM_EDITLABELA
comptime_int
LVM_EDITLABELW
comptime_int
LVM_ENABLEGROUPVIEW
comptime_int
LVM_ENSUREVISIBLE
comptime_int
LVM_FINDITEMA
comptime_int
LVM_FINDITEMW
comptime_int
LVM_GETBKCOLOR
comptime_int
LVM_GETBKIMAGEA
comptime_int
LVM_GETBKIMAGEW
comptime_int
LVM_GETCALLBACKMASK
comptime_int
LVM_GETCOLUMNA
comptime_int
LVM_GETCOLUMNORDERARRAY
comptime_int
LVM_GETCOLUMNW
comptime_int
LVM_GETCOLUMNWIDTH
comptime_int
LVM_GETCOUNTPERPAGE
comptime_int
LVM_GETEDITCONTROL
comptime_int
LVM_GETEXTENDEDLISTVIEWSTYLE
comptime_int
LVM_GETGROUPINFO
comptime_int
LVM_GETGROUPMETRICS
comptime_int
LVM_GETHEADER
comptime_int
LVM_GETHOTCURSOR
comptime_int
LVM_GETHOTITEM
comptime_int
LVM_GETHOVERTIME
comptime_int
LVM_GETIMAGELIST
comptime_int
LVM_GETINSERTMARK
comptime_int
LVM_GETINSERTMARKCOLOR
comptime_int
LVM_GETINSERTMARKRECT
comptime_int
LVM_GETISEARCHSTRINGA
comptime_int
LVM_GETISEARCHSTRINGW
comptime_int
LVM_GETITEMA
comptime_int
LVM_GETITEMCOUNT
comptime_int
LVM_GETITEMPOSITION
comptime_int
LVM_GETITEMRECT
comptime_int
LVM_GETITEMSPACING
comptime_int
LVM_GETITEMSTATE
comptime_int
LVM_GETITEMTEXTA
comptime_int
LVM_GETITEMTEXTW
comptime_int
LVM_GETITEMW
comptime_int
LVM_GETNEXTITEM
comptime_int
LVM_GETNUMBEROFWORKAREAS
comptime_int
LVM_GETORIGIN
comptime_int
LVM_GETOUTLINECOLOR
comptime_int
LVM_GETSELECTEDCOLUMN
comptime_int
LVM_GETSELECTEDCOUNT
comptime_int
LVM_GETSELECTIONMARK
comptime_int
LVM_GETSTRINGWIDTHA
comptime_int
LVM_GETSTRINGWIDTHW
comptime_int
LVM_GETSUBITEMRECT
comptime_int
LVM_GETTEXTBKCOLOR
comptime_int
LVM_GETTEXTCOLOR
comptime_int
LVM_GETTILEINFO
comptime_int
LVM_GETTILEVIEWINFO
comptime_int
LVM_GETTOOLTIPS
comptime_int
LVM_GETTOPINDEX
comptime_int
LVM_GETUNICODEFORMAT
comptime_int
LVM_GETVIEW
comptime_int
LVM_GETVIEWRECT
comptime_int
LVM_GETWORKAREAS
comptime_int
LVM_HASGROUP
comptime_int
LVM_HITTEST
comptime_int
LVM_INSERTCOLUMNA
comptime_int
LVM_INSERTCOLUMNW
comptime_int
LVM_INSERTGROUP
comptime_int
LVM_INSERTGROUPSORTED
comptime_int
LVM_INSERTITEMA
comptime_int
LVM_INSERTITEMW
comptime_int
LVM_INSERTMARKHITTEST
comptime_int
LVM_ISGROUPVIEWENABLED
comptime_int
LVM_ISITEMVISIBLE
comptime_int
LVM_MAPIDTOINDEX
comptime_int
LVM_MAPINDEXTOID
comptime_int
LVM_MOVEGROUP
comptime_int
LVM_MOVEITEMTOGROUP
comptime_int
LVM_REDRAWITEMS
comptime_int
LVM_REMOVEALLGROUPS
comptime_int
LVM_REMOVEGROUP
comptime_int
LVM_SCROLL
comptime_int
LVM_SETBKCOLOR
comptime_int
LVM_SETBKIMAGEA
comptime_int
LVM_SETCALLBACKMASK
comptime_int
LVM_SETCOLUMNA
comptime_int
LVM_SETCOLUMNORDERARRAY
comptime_int
LVM_SETCOLUMNW
comptime_int
LVM_SETCOLUMNWIDTH
comptime_int
LVM_SETEXTENDEDLISTVIEWSTYLE
comptime_int
LVM_SETGROUPINFO
comptime_int
LVM_SETGROUPMETRICS
comptime_int
LVM_SETHOTCURSOR
comptime_int
LVM_SETHOTITEM
comptime_int
LVM_SETHOVERTIME
comptime_int
LVM_SETICONSPACING
comptime_int
LVM_SETIMAGELIST
comptime_int
LVM_SETINFOTIP
comptime_int
LVM_SETINSERTMARK
comptime_int
LVM_SETINSERTMARKCOLOR
comptime_int
LVM_SETITEMA
comptime_int
LVM_SETITEMCOUNT
comptime_int
LVM_SETITEMPOSITION
comptime_int
LVM_SETITEMPOSITION32
comptime_int
LVM_SETITEMSTATE
comptime_int
LVM_SETITEMTEXTA
comptime_int
LVM_SETITEMTEXTW
comptime_int
LVM_SETITEMW
comptime_int
LVM_SETOUTLINECOLOR
comptime_int
LVM_SETSELECTEDCOLUMN
comptime_int
LVM_SETSELECTIONMARK
comptime_int
LVM_SETTEXTBKCOLOR
comptime_int
LVM_SETTEXTCOLOR
comptime_int
LVM_SETTILEINFO
comptime_int
LVM_SETTILEVIEWINFO
comptime_int
LVM_SETTILEWIDTH
comptime_int
LVM_SETTOOLTIPS
comptime_int
LVM_SETUNICODEFORMAT
comptime_int
LVM_SETVIEW
comptime_int
LVM_SETWORKAREAS
comptime_int
LVM_SORTGROUPS
comptime_int
LVM_SORTITEMS
comptime_int
LVM_SUBITEMHITTEST
comptime_int
LVM_UPDATE
comptime_int
MB_ABORTRETRYIGNORE
comptime_int
MB_APPLMODAL
comptime_int
MB_CANCELTRYCONTINUE
comptime_int
MB_DEFAULT_DESKTOP_ONLY
comptime_int
MB_DEFBUTTON1
comptime_int
MB_DEFBUTTON2
comptime_int
MB_DEFBUTTON3
comptime_int
MB_DEFBUTTON4
comptime_int
MB_DEFMASK
comptime_int
MB_HELP
comptime_int
MB_ICONASTERISK
comptime_int
MB_ICONERROR
comptime_int
MB_ICONEXCLAMATION
comptime_int
MB_ICONHAND
comptime_int
MB_ICONINFORMATION
comptime_int
MB_ICONMASK
comptime_int
MB_ICONQUESTION
comptime_int
MB_ICONSTOP
comptime_int
MB_ICONWARNING
comptime_int
MB_MISCMASK
comptime_int
MB_MODEMASK
comptime_int
MB_NOFOCUS
comptime_int
MB_OK
comptime_int
MB_OKCANCEL
comptime_int
MB_RETRYCANCEL
comptime_int
MB_RIGHT
comptime_int
MB_RTLREADING
comptime_int
MB_SETFOREGROUND
comptime_int
MB_SYSTEMMODAL
comptime_int
MB_TASKMODAL
comptime_int
MB_TOPMOST
comptime_int
MB_TYPEMASK
comptime_int
MB_USERICON
comptime_int
MB_YESNO
comptime_int
MB_YESNOCANCEL
comptime_int
MCIWNDM_CAN_CONFIG
comptime_int
MCIWNDM_CAN_EJECT
comptime_int
MCIWNDM_CAN_PLAY
comptime_int
MCIWNDM_CAN_RECORD
comptime_int
MCIWNDM_CAN_SAVE
comptime_int
MCIWNDM_CAN_WINDOW
comptime_int
MCIWNDM_GETDEVICEA
comptime_int
MCIWNDM_GETDEVICEW
comptime_int
MCIWNDM_GETERRORA
comptime_int
MCIWNDM_GETERRORW
comptime_int
MCIWNDM_GETFILENAMEA
comptime_int
MCIWNDM_GETFILENAMEW
comptime_int
MCIWNDM_GETINACTIVETIMER
comptime_int
MCIWNDM_GETPALETTE
comptime_int
MCIWNDM_GETTIMEFORMATA
comptime_int
MCIWNDM_GETTIMEFORMATW
comptime_int
MCIWNDM_GETZOOM
comptime_int
MCIWNDM_GET_DEST
comptime_int
MCIWNDM_GET_SOURCE
comptime_int
MCIWNDM_NOTIFYERROR
comptime_int
MCIWNDM_NOTIFYMEDIA
comptime_int
MCIWNDM_NOTIFYMODE
comptime_int
MCIWNDM_PALETTEKICK
comptime_int
MCIWNDM_PLAYTO
comptime_int
MCIWNDM_PUT_DEST
comptime_int
MCIWNDM_PUT_SOURCE
comptime_int
MCIWNDM_REALIZE
comptime_int
MCIWNDM_SETINACTIVETIMER
comptime_int
MCIWNDM_SETPALETTE
comptime_int
MCIWNDM_SETTIMEFORMATA
comptime_int
MCIWNDM_SETTIMEFORMATW
comptime_int
MCIWNDM_VALIDATEMEDIA
comptime_int
MSG_FTS_JUMP_QWORD
comptime_int
MSG_FTS_JUMP_VA
comptime_int
MSG_FTS_WHERE_IS_IT
comptime_int
MSG_GET_DEFFONT
comptime_int
MSG_REINDEX_REQUEST
comptime_int
NIN_SELECT
comptime_int
OCM_CHARTOITEM
comptime_int
OCM_COMMAND
comptime_int
OCM_COMPAREITEM
comptime_int
OCM_CTLCOLOR
comptime_int
OCM_CTLCOLORBTN
comptime_int
OCM_CTLCOLORDLG
comptime_int
OCM_CTLCOLOREDIT
comptime_int
OCM_CTLCOLORLISTBOX
comptime_int
OCM_CTLCOLORMSGBOX
comptime_int
OCM_CTLCOLORSCROLLBAR
comptime_int
OCM_CTLCOLORSTATIC
comptime_int
OCM_DELETEITEM
comptime_int
OCM_DRAWITEM
comptime_int
OCM_HSCROLL
comptime_int
OCM_MEASUREITEM
comptime_int
OCM_NOTIFY
comptime_int
OCM_PARENTNOTIFY
comptime_int
OCM_VKEYTOITEM
comptime_int
OCM_VSCROLL
comptime_int
OCM__BASE
comptime_int
PBM_DELTAPOS
comptime_int
PBM_GETPOS
comptime_int
PBM_GETRANGE
comptime_int
PBM_SETBARCOLOR
comptime_int
PBM_SETPOS
comptime_int
PBM_SETRANGE
comptime_int
PBM_SETRANGE32
comptime_int
PBM_SETSTEP
comptime_int
PBM_STEPIT
comptime_int
PM_NOREMOVE
comptime_int
PM_NOYIELD
comptime_int
PM_REMOVE
comptime_int
PSM_ADDPAGE
comptime_int
PSM_APPLY
comptime_int
PSM_CANCELTOCLOSE
comptime_int
PSM_CHANGED
comptime_int
PSM_GETCURRENTPAGEHWND
comptime_int
PSM_GETRESULT
comptime_int
PSM_GETTABCONTROL
comptime_int
PSM_HWNDTOINDEX
comptime_int
PSM_IDTOINDEX
comptime_int
PSM_INDEXTOHWND
comptime_int
PSM_INDEXTOID
comptime_int
PSM_INDEXTOPAGE
comptime_int
PSM_INSERTPAGE
comptime_int
PSM_ISDIALOGMESSAGE
comptime_int
PSM_PAGETOINDEX
comptime_int
PSM_PRESSBUTTON
comptime_int
PSM_QUERYSIBLINGS
comptime_int
PSM_REBOOTSYSTEM
comptime_int
PSM_RECALCPAGESIZES
comptime_int
PSM_REMOVEPAGE
comptime_int
PSM_RESTARTWINDOWS
comptime_int
PSM_SETCURSEL
comptime_int
PSM_SETCURSELID
comptime_int
PSM_SETFINISHTEXTA
comptime_int
PSM_SETFINISHTEXTW
comptime_int
PSM_SETHEADERSUBTITLEA
comptime_int
PSM_SETHEADERSUBTITLEW
comptime_int
PSM_SETHEADERTITLEA
comptime_int
PSM_SETHEADERTITLEW
comptime_int
PSM_SETTITLEA
comptime_int
PSM_SETTITLEW
comptime_int
PSM_SETWIZBUTTONS
comptime_int
PSM_UNCHANGED
comptime_int
RB_BEGINDRAG
comptime_int
RB_DELETEBAND
comptime_int
RB_DRAGMOVE
comptime_int
RB_ENDDRAG
comptime_int
RB_GETBANDBORDERS
comptime_int
RB_GETBANDCOUNT
comptime_int
RB_GETBANDINFOA
comptime_int
RB_GETBANDINFOW
comptime_int
RB_GETBARHEIGHT
comptime_int
RB_GETBARINFO
comptime_int
RB_GETBKCOLOR
comptime_int
RB_GETPALETTE
comptime_int
RB_GETRECT
comptime_int
RB_GETROWCOUNT
comptime_int
RB_GETROWHEIGHT
comptime_int
RB_GETTEXTCOLOR
comptime_int
RB_GETTOOLTIPS
comptime_int
RB_HITTEST
comptime_int
RB_IDTOINDEX
comptime_int
RB_INSERTBANDA
comptime_int
RB_INSERTBANDW
comptime_int
RB_MAXIMIZEBAND
comptime_int
RB_MINIMIZEBAND
comptime_int
RB_MOVEBAND
comptime_int
RB_PUSHCHEVRON
comptime_int
RB_SETBANDINFOA
comptime_int
RB_SETBANDINFOW
comptime_int
RB_SETBARINFO
comptime_int
RB_SETBKCOLOR
comptime_int
RB_SETPALETTE
comptime_int
RB_SETPARENT
comptime_int
RB_SETTEXTCOLOR
comptime_int
RB_SETTOOLTIPS
comptime_int
RB_SHOWBAND
comptime_int
RB_SIZETORECT
comptime_int
SBM_ENABLE_ARROWS
comptime_int
SBM_GETPOS
comptime_int
SBM_GETRANGE
comptime_int
SBM_GETSCROLLBARINFO
comptime_int
SBM_GETSCROLLINFO
comptime_int
SBM_SETPOS
comptime_int
SBM_SETRANGE
comptime_int
SBM_SETRANGEREDRAW
comptime_int
SBM_SETSCROLLINFO
comptime_int
SB_GETBORDERS
comptime_int
SB_GETICON
comptime_int
SB_GETPARTS
comptime_int
SB_GETRECT
comptime_int
SB_GETTEXTA
comptime_int
SB_GETTEXTLENGTHA
comptime_int
SB_GETTEXTLENGTHW
comptime_int
SB_GETTEXTW
comptime_int
SB_GETTIPTEXTA
comptime_int
SB_GETTIPTEXTW
comptime_int
SB_ISSIMPLE
comptime_int
SB_SETICON
comptime_int
SB_SETMINHEIGHT
comptime_int
SB_SETPARTS
comptime_int
SB_SETTEXTA
comptime_int
SB_SETTEXTW
comptime_int
SB_SETTIPTEXTA
comptime_int
SB_SETTIPTEXTW
comptime_int
SB_SIMPLE
comptime_int
SM_GETCURFOCUSA
comptime_int
SM_GETCURFOCUSW
comptime_int
SM_GETOPTIONS
comptime_int
SM_GETSELCOUNT
comptime_int
SM_GETSERVERSELA
comptime_int
SM_GETSERVERSELW
comptime_int
SW_FORCEMINIMIZE
comptime_int
SW_HIDE
comptime_int
SW_MAX
comptime_int
SW_MAXIMIZE
comptime_int
SW_MINIMIZE
comptime_int
SW_NORMAL
comptime_int
SW_RESTORE
comptime_int
SW_SHOW
comptime_int
SW_SHOWDEFAULT
comptime_int
SW_SHOWMAXIMIZED
comptime_int
SW_SHOWMINIMIZED
comptime_int
SW_SHOWMINNOACTIVE
comptime_int
SW_SHOWNA
comptime_int
SW_SHOWNOACTIVATE
comptime_int
SW_SHOWNORMAL
comptime_int
TAPI_REPLY
comptime_int
TBM_CLEARSEL
comptime_int
TBM_CLEARTICS
comptime_int
TBM_GETBUDDY
comptime_int
TBM_GETCHANNELRECT
comptime_int
TBM_GETLINESIZE
comptime_int
TBM_GETNUMTICS
comptime_int
TBM_GETPAGESIZE
comptime_int
TBM_GETPOS
comptime_int
TBM_GETPTICS
comptime_int
TBM_GETRANGEMAX
comptime_int
TBM_GETRANGEMIN
comptime_int
TBM_GETSELEND
comptime_int
TBM_GETSELSTART
comptime_int
TBM_GETTHUMBLENGTH
comptime_int
TBM_GETTHUMBRECT
comptime_int
TBM_GETTIC
comptime_int
TBM_GETTICPOS
comptime_int
TBM_GETTOOLTIPS
comptime_int
TBM_SETBUDDY
comptime_int
TBM_SETLINESIZE
comptime_int
TBM_SETPAGESIZE
comptime_int
TBM_SETPOS
comptime_int
TBM_SETRANGE
comptime_int
TBM_SETRANGEMAX
comptime_int
TBM_SETRANGEMIN
comptime_int
TBM_SETSEL
comptime_int
TBM_SETSELEND
comptime_int
TBM_SETSELSTART
comptime_int
TBM_SETTHUMBLENGTH
comptime_int
TBM_SETTIC
comptime_int
TBM_SETTICFREQ
comptime_int
TBM_SETTIPSIDE
comptime_int
TBM_SETTOOLTIPS
comptime_int
TB_ADDBITMAP
comptime_int
TB_ADDBUTTONSA
comptime_int
TB_ADDBUTTONSW
comptime_int
TB_ADDSTRINGA
comptime_int
TB_ADDSTRINGW
comptime_int
TB_AUTOSIZE
comptime_int
TB_BUTTONCOUNT
comptime_int
TB_BUTTONSTRUCTSIZE
comptime_int
TB_CHANGEBITMAP
comptime_int
TB_CHECKBUTTON
comptime_int
TB_COMMANDTOINDEX
comptime_int
TB_CUSTOMIZE
comptime_int
TB_DELETEBUTTON
comptime_int
TB_ENABLEBUTTON
comptime_int
TB_GETANCHORHIGHLIGHT
comptime_int
TB_GETBITMAP
comptime_int
TB_GETBITMAPFLAGS
comptime_int
TB_GETBUTTON
comptime_int
TB_GETBUTTONINFOA
comptime_int
TB_GETBUTTONINFOW
comptime_int
TB_GETBUTTONSIZE
comptime_int
TB_GETBUTTONTEXTA
comptime_int
TB_GETBUTTONTEXTW
comptime_int
TB_GETDISABLEDIMAGELIST
comptime_int
TB_GETEXTENDEDSTYLE
comptime_int
TB_GETHOTIMAGELIST
comptime_int
TB_GETHOTITEM
comptime_int
TB_GETIMAGELIST
comptime_int
TB_GETINSERTMARK
comptime_int
TB_GETINSERTMARKCOLOR
comptime_int
TB_GETITEMRECT
comptime_int
TB_GETMAXSIZE
comptime_int
TB_GETOBJECT
comptime_int
TB_GETPADDING
comptime_int
TB_GETRECT
comptime_int
TB_GETROWS
comptime_int
TB_GETSTATE
comptime_int
TB_GETSTRINGA
comptime_int
TB_GETSTRINGW
comptime_int
TB_GETSTYLE
comptime_int
TB_GETTEXTROWS
comptime_int
TB_GETTOOLTIPS
comptime_int
TB_HIDEBUTTON
comptime_int
TB_HITTEST
comptime_int
TB_INDETERMINATE
comptime_int
TB_INSERTBUTTONA
comptime_int
TB_INSERTBUTTONW
comptime_int
TB_INSERTMARKHITTEST
comptime_int
TB_ISBUTTONCHECKED
comptime_int
TB_ISBUTTONENABLED
comptime_int
TB_ISBUTTONHIDDEN
comptime_int
TB_ISBUTTONHIGHLIGHTED
comptime_int
TB_ISBUTTONINDETERMINATE
comptime_int
TB_ISBUTTONPRESSED
comptime_int
TB_LOADIMAGES
comptime_int
TB_MAPACCELERATORA
comptime_int
TB_MAPACCELERATORW
comptime_int
TB_MARKBUTTON
comptime_int
TB_MOVEBUTTON
comptime_int
TB_PRESSBUTTON
comptime_int
TB_REPLACEBITMAP
comptime_int
TB_SAVERESTOREA
comptime_int
TB_SAVERESTOREW
comptime_int
TB_SETANCHORHIGHLIGHT
comptime_int
TB_SETBITMAPSIZE
comptime_int
TB_SETBUTTONINFOA
comptime_int
TB_SETBUTTONINFOW
comptime_int
TB_SETBUTTONSIZE
comptime_int
TB_SETBUTTONWIDTH
comptime_int
TB_SETCMDID
comptime_int
TB_SETDISABLEDIMAGELIST
comptime_int
TB_SETDRAWTEXTFLAGS
comptime_int
TB_SETEXTENDEDSTYLE
comptime_int
TB_SETHOTIMAGELIST
comptime_int
TB_SETHOTITEM
comptime_int
TB_SETIMAGELIST
comptime_int
TB_SETINDENT
comptime_int
TB_SETINSERTMARK
comptime_int
TB_SETINSERTMARKCOLOR
comptime_int
TB_SETMAXTEXTROWS
comptime_int
TB_SETPADDING
comptime_int
TB_SETPARENT
comptime_int
TB_SETROWS
comptime_int
TB_SETSTATE
comptime_int
TB_SETSTYLE
comptime_int
TB_SETTOOLTIPS
comptime_int
TTM_ACTIVATE
comptime_int
TTM_ADDTOOLA
comptime_int
TTM_ADDTOOLW
comptime_int
TTM_ADJUSTRECT
comptime_int
TTM_DELTOOLA
comptime_int
TTM_DELTOOLW
comptime_int
TTM_ENUMTOOLSA
comptime_int
TTM_ENUMTOOLSW
comptime_int
TTM_GETBUBBLESIZE
comptime_int
TTM_GETCURRENTTOOLA
comptime_int
TTM_GETCURRENTTOOLW
comptime_int
TTM_GETDELAYTIME
comptime_int
TTM_GETMARGIN
comptime_int
TTM_GETMAXTIPWIDTH
comptime_int
TTM_GETTEXTA
comptime_int
TTM_GETTEXTW
comptime_int
TTM_GETTIPBKCOLOR
comptime_int
TTM_GETTIPTEXTCOLOR
comptime_int
TTM_GETTOOLCOUNT
comptime_int
TTM_GETTOOLINFOA
comptime_int
TTM_GETTOOLINFOW
comptime_int
TTM_HITTESTA
comptime_int
TTM_HITTESTW
comptime_int
TTM_NEWTOOLRECTA
comptime_int
TTM_NEWTOOLRECTW
comptime_int
TTM_POP
comptime_int
TTM_RELAYEVENT
comptime_int
TTM_SETDELAYTIME
comptime_int
TTM_SETMARGIN
comptime_int
TTM_SETMAXTIPWIDTH
comptime_int
TTM_SETTIPBKCOLOR
comptime_int
TTM_SETTIPTEXTCOLOR
comptime_int
TTM_SETTITLEA
comptime_int
TTM_SETTITLEW
comptime_int
TTM_SETTOOLINFOA
comptime_int
TTM_SETTOOLINFOW
comptime_int
TTM_TRACKACTIVATE
comptime_int
TTM_TRACKPOSITION
comptime_int
TTM_UPDATE
comptime_int
TTM_UPDATETIPTEXTA
comptime_int
TTM_UPDATETIPTEXTW
comptime_int
TTM_WINDOWFROMPOINT
comptime_int
UDM_GETACCEL
comptime_int
UDM_GETBASE
comptime_int
UDM_GETBUDDY
comptime_int
UDM_GETPOS
comptime_int
UDM_GETPOS32
comptime_int
UDM_GETRANGE
comptime_int
UDM_GETRANGE32
comptime_int
UDM_SETACCEL
comptime_int
UDM_SETBASE
comptime_int
UDM_SETBUDDY
comptime_int
UDM_SETPOS
comptime_int
UDM_SETPOS32
comptime_int
UDM_SETRANGE
comptime_int
UDM_SETRANGE32
comptime_int
UM_GETCURFOCUSA
comptime_int
UM_GETCURFOCUSW
comptime_int
UM_GETGROUPSELA
comptime_int
UM_GETGROUPSELW
comptime_int
UM_GETOPTIONS
comptime_int
UM_GETOPTIONS2
comptime_int
UM_GETSELCOUNT
comptime_int
UM_GETUSERSELA
comptime_int
UM_GETUSERSELW
comptime_int
WIZ_NEXT
comptime_int
WIZ_PREV
comptime_int
WIZ_QUERYNUMPAGES
comptime_int
WLX_WM_SAS
comptime_int
WM_ACTIVATE
comptime_int
WM_ACTIVATEAPP
comptime_int
WM_APP
comptime_int
WM_APPCOMMAND
comptime_int
WM_ASKCBFORMATNAME
comptime_int
WM_CANCELJOURNAL
comptime_int
WM_CANCELMODE
comptime_int
WM_CAPTURECHANGED
comptime_int
WM_CAP_DRIVER_GET_NAMEW
comptime_int
WM_CAP_DRIVER_GET_VERSIONW
comptime_int
WM_CAP_FILE_GET_CAPTURE_FILEW
comptime_int
WM_CAP_FILE_SAVEASW
comptime_int
WM_CAP_FILE_SAVEDIBW
comptime_int
WM_CAP_FILE_SET_CAPTURE_FILEW
comptime_int
WM_CAP_GET_MCI_DEVICEW
comptime_int
WM_CAP_PAL_OPENW
comptime_int
WM_CAP_PAL_SAVEW
comptime_int
WM_CAP_SET_CALLBACK_ERRORW
comptime_int
WM_CAP_SET_CALLBACK_STATUSW
comptime_int
WM_CAP_SET_MCI_DEVICEW
comptime_int
WM_CAP_UNICODE_START
comptime_int
WM_CARET_BLINK
comptime_int
WM_CARET_CREATE
comptime_int
WM_CARET_DESTROY
comptime_int
WM_CHANGECBCHAIN
comptime_int
WM_CHANGEUISTATE
comptime_int
WM_CHAR
comptime_int
WM_CHARTOITEM
comptime_int
WM_CHILDACTIVATE
comptime_int
WM_CHOOSEFONT_GETLOGFONT
comptime_int
WM_CHOOSEFONT_SETFLAGS
comptime_int
WM_CHOOSEFONT_SETLOGFONT
comptime_int
WM_CLEAR
comptime_int
WM_CLOSE
comptime_int
WM_COMMAND
comptime_int
WM_COMMNOTIFY
comptime_int
WM_COMPACTING
comptime_int
WM_COMPAREITEM
comptime_int
WM_CONTEXTMENU
comptime_int
WM_CONVERTREQUEST
comptime_int
WM_CONVERTRESULT
comptime_int
WM_COPY
comptime_int
WM_COPYDATA
comptime_int
WM_COPYGLOBALDATA
comptime_int
WM_CPL_LAUNCH
comptime_int
WM_CPL_LAUNCHED
comptime_int
WM_CREATE
comptime_int
WM_CTLCOLOR
comptime_int
WM_CTLCOLORBTN
comptime_int
WM_CTLCOLORDLG
comptime_int
WM_CTLCOLOREDIT
comptime_int
WM_CTLCOLORLISTBOX
comptime_int
WM_CTLCOLORMSGBOX
comptime_int
WM_CTLCOLORSCROLLBAR
comptime_int
WM_CTLCOLORSTATIC
comptime_int
WM_CTLINIT
comptime_int
WM_CUT
comptime_int
WM_DEADCHAR
comptime_int
WM_DELETEITEM
comptime_int
WM_DESTROY
comptime_int
WM_DESTROYCLIPBOARD
comptime_int
WM_DEVICECHANGE
comptime_int
WM_DEVMODECHANGE
comptime_int
WM_DISPLAYCHANGE
comptime_int
WM_DRAWCLIPBOARD
comptime_int
WM_DRAWITEM
comptime_int
WM_DROPFILES
comptime_int
WM_ENABLE
comptime_int
WM_ENDSESSION
comptime_int
WM_ENTERIDLE
comptime_int
WM_ENTERMENULOOP
comptime_int
WM_ENTERSIZEMOVE
comptime_int
WM_ERASEBKGND
comptime_int
WM_EXITMENULOOP
comptime_int
WM_EXITSIZEMOVE
comptime_int
WM_FDEXCEPT
comptime_int
WM_FDINPUT
comptime_int
WM_FDOUTPUT
comptime_int
WM_FONTCHANGE
comptime_int
WM_GETDLGCODE
comptime_int
WM_GETFONT
comptime_int
WM_GETHOTKEY
comptime_int
WM_GETICON
comptime_int
WM_GETMINMAXINFO
comptime_int
WM_GETOBJECT
comptime_int
WM_GETTEXT
comptime_int
WM_GETTEXTLENGTH
comptime_int
WM_GLOBALRCCHANGE
comptime_int
WM_HEDITCTL
comptime_int
WM_HELP
comptime_int
WM_HOOKRCRESULT
comptime_int
WM_HOTKEY
comptime_int
WM_HSCROLL
comptime_int
WM_HSCROLLCLIPBOARD
comptime_int
WM_ICONERASEBKGND
comptime_int
WM_IMEKEYDOWN
comptime_int
WM_IMEKEYUP
comptime_int
WM_IME_CHAR
comptime_int
WM_IME_COMPOSITION
comptime_int
WM_IME_COMPOSITIONFULL
comptime_int
WM_IME_CONTROL
comptime_int
WM_IME_ENDCOMPOSITION
comptime_int
WM_IME_KEYDOWN
comptime_int
WM_IME_KEYUP
comptime_int
WM_IME_NOTIFY
comptime_int
WM_IME_REPORT
comptime_int
WM_IME_REQUEST
comptime_int
WM_IME_SELECT
comptime_int
WM_IME_SETCONTEXT
comptime_int
WM_IME_STARTCOMPOSITION
comptime_int
WM_INITDIALOG
comptime_int
WM_INITMENU
comptime_int
WM_INITMENUPOPUP
comptime_int
WM_INPUT
comptime_int
WM_INPUTLANGCHANGE
comptime_int
WM_INPUTLANGCHANGEREQUEST
comptime_int
WM_INTERIM
comptime_int
WM_KEYDOWN
comptime_int
WM_KEYUP
comptime_int
WM_KILLFOCUS
comptime_int
WM_LBUTTONDBLCLK
comptime_int
WM_LBUTTONDOWN
comptime_int
WM_LBUTTONUP
comptime_int
WM_MBUTTONDBLCLK
comptime_int
WM_MBUTTONDOWN
comptime_int
WM_MBUTTONUP
comptime_int
WM_MDIACTIVATE
comptime_int
WM_MDICASCADE
comptime_int
WM_MDICREATE
comptime_int
WM_MDIDESTROY
comptime_int
WM_MDIGETACTIVE
comptime_int
WM_MDIICONARRANGE
comptime_int
WM_MDIMAXIMIZE
comptime_int
WM_MDINEXT
comptime_int
WM_MDIREFRESHMENU
comptime_int
WM_MDIRESTORE
comptime_int
WM_MDISETMENU
comptime_int
WM_MDITILE
comptime_int
WM_MEASUREITEM
comptime_int
WM_MENUCHAR
comptime_int
WM_MENUCOMMAND
comptime_int
WM_MENUDRAG
comptime_int
WM_MENUGETOBJECT
comptime_int
WM_MENURBUTTONUP
comptime_int
WM_MENUSELECT
comptime_int
WM_MOUSEACTIVATE
comptime_int
WM_MOUSEHOVER
comptime_int
WM_MOUSEHWHEEL
comptime_int
WM_MOUSELEAVE
comptime_int
WM_MOUSEMOVE
comptime_int
WM_MOUSEWHEEL
comptime_int
WM_MOVE
comptime_int
WM_MOVING
comptime_int
WM_NCACTIVATE
comptime_int
WM_NCCALCSIZE
comptime_int
WM_NCCREATE
comptime_int
WM_NCDESTROY
comptime_int
WM_NCHITTEST
comptime_int
WM_NCLBUTTONDBLCLK
comptime_int
WM_NCLBUTTONDOWN
comptime_int
WM_NCLBUTTONUP
comptime_int
WM_NCMBUTTONDBLCLK
comptime_int
WM_NCMBUTTONDOWN
comptime_int
WM_NCMBUTTONUP
comptime_int
WM_NCMOUSEHOVER
comptime_int
WM_NCMOUSELEAVE
comptime_int
WM_NCMOUSEMOVE
comptime_int
WM_NCPAINT
comptime_int
WM_NCRBUTTONDBLCLK
comptime_int
WM_NCRBUTTONDOWN
comptime_int
WM_NCRBUTTONUP
comptime_int
WM_NCXBUTTONDBLCLK
comptime_int
WM_NCXBUTTONDOWN
comptime_int
WM_NCXBUTTONUP
comptime_int
WM_NEXTDLGCTL
comptime_int
WM_NEXTMENU
comptime_int
WM_NOTIFY
comptime_int
WM_NOTIFYFORMAT
comptime_int
WM_NULL
comptime_int
WM_PAINT
comptime_int
WM_PAINTCLIPBOARD
comptime_int
WM_PAINTICON
comptime_int
WM_PALETTECHANGED
comptime_int
WM_PALETTEISCHANGING
comptime_int
WM_PARENTNOTIFY
comptime_int
WM_PASTE
comptime_int
WM_PENCTL
comptime_int
WM_PENEVENT
comptime_int
WM_PENMISC
comptime_int
WM_PENMISCINFO
comptime_int
WM_POWER
comptime_int
WM_POWERBROADCAST
comptime_int
WM_PRINT
comptime_int
WM_PRINTCLIENT
comptime_int
WM_PSD_ENVSTAMPRECT
comptime_int
WM_PSD_FULLPAGERECT
comptime_int
WM_PSD_GREEKTEXTRECT
comptime_int
WM_PSD_MARGINRECT
comptime_int
WM_PSD_MINMARGINRECT
comptime_int
WM_PSD_PAGESETUPDLG
comptime_int
WM_PSD_YAFULLPAGERECT
comptime_int
WM_QUERYDRAGICON
comptime_int
WM_QUERYENDSESSION
comptime_int
WM_QUERYNEWPALETTE
comptime_int
WM_QUERYOPEN
comptime_int
WM_QUERYUISTATE
comptime_int
WM_QUEUESYNC
comptime_int
WM_QUIT
comptime_int
WM_RASDIALEVENT
comptime_int
WM_RBUTTONDBLCLK
comptime_int
WM_RBUTTONDOWN
comptime_int
WM_RBUTTONUP
comptime_int
WM_RCRESULT
comptime_int
WM_RENDERALLFORMATS
comptime_int
WM_RENDERFORMAT
comptime_int
WM_SETCURSOR
comptime_int
WM_SETFOCUS
comptime_int
WM_SETFONT
comptime_int
WM_SETHOTKEY
comptime_int
WM_SETICON
comptime_int
WM_SETREDRAW
comptime_int
WM_SETTEXT
comptime_int
WM_SHOWWINDOW
comptime_int
WM_SIZE
comptime_int
WM_SIZECLIPBOARD
comptime_int
WM_SIZING
comptime_int
WM_SKB
comptime_int
WM_SPOOLERSTATUS
comptime_int
WM_STYLECHANGED
comptime_int
WM_STYLECHANGING
comptime_int
WM_SYNCPAINT
comptime_int
WM_SYSCHAR
comptime_int
WM_SYSCOLORCHANGE
comptime_int
WM_SYSCOMMAND
comptime_int
WM_SYSDEADCHAR
comptime_int
WM_SYSKEYDOWN
comptime_int
WM_SYSKEYUP
comptime_int
WM_SYSTIMER
comptime_int
WM_TCARD
comptime_int
WM_TIMECHANGE
comptime_int
WM_TIMER
comptime_int
WM_UNDO
comptime_int
WM_UNICHAR
comptime_int
WM_UNINITMENUPOPUP
comptime_int
WM_UPDATEUISTATE
comptime_int
WM_USER
comptime_int
WM_USERCHANGED
comptime_int
WM_VKEYTOITEM
comptime_int
WM_VSCROLL
comptime_int
WM_VSCROLLCLIPBOARD
comptime_int
WM_WINDOWPOSCHANGED
comptime_int
WM_WINDOWPOSCHANGING
comptime_int
WM_WININICHANGE
comptime_int
WM_WNT_CONVERTREQUESTEX
comptime_int
WM_XBUTTONDBLCLK
comptime_int
WM_XBUTTONDOWN
comptime_int
WM_XBUTTONUP
comptime_int
WS_BORDER
comptime_int
WS_CAPTION
type
WS_CHILD
comptime_int
WS_CHILDWINDOW
comptime_int
WS_CLIPCHILDREN
comptime_int
WS_CLIPSIBLINGS
comptime_int
WS_DISABLED
comptime_int
WS_DLGFRAME
comptime_int
WS_EX_ACCEPTFILES
comptime_int
WS_EX_APPWINDOW
comptime_int
WS_EX_CLIENTEDGE
comptime_int
WS_EX_CONTEXTHELP
comptime_int
WS_EX_CONTROLPARENT
comptime_int
WS_EX_DLGMODALFRAME
comptime_int
WS_EX_LAYERED
comptime_int
WS_EX_LEFT
comptime_int
WS_EX_LEFTSCROLLBAR
comptime_int
WS_EX_LTRREADING
comptime_int
WS_EX_MDICHILD
comptime_int
WS_EX_NOPARENTNOTIFY
comptime_int
WS_EX_OVERLAPPEDWINDOW
type
WS_EX_PALETTEWINDOW
type
WS_EX_RIGHT
comptime_int
WS_EX_RIGHTSCROLLBAR
comptime_int
WS_EX_RTLREADING
comptime_int
WS_EX_STATICEDGE
comptime_int
WS_EX_TOOLWINDOW
comptime_int
WS_EX_TOPMOST
comptime_int
WS_EX_TRANSPARENT
comptime_int
WS_EX_WINDOWEDGE
comptime_int
WS_GROUP
comptime_int
WS_HSCROLL
comptime_int
WS_ICONIC
comptime_int
WS_MAXIMIZE
comptime_int
WS_MAXIMIZEBOX
comptime_int
WS_MINIMIZE
comptime_int
WS_MINIMIZEBOX
comptime_int
WS_OVERLAPPED
comptime_int
WS_OVERLAPPEDWINDOW
type
WS_POPUP
comptime_int
WS_POPUPWINDOW
type
WS_SIZEBOX
comptime_int
WS_SYSMENU
comptime_int
WS_TABSTOP
comptime_int
WS_THICKFRAME
comptime_int
WS_TILED
comptime_int
WS_TILEDWINDOW
type
WS_VISIBLE
comptime_int
WS_VSCROLL
comptime_int