OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LRESULTToBool
(Results
1 - 5
of
5
) sorted by null
/external/lzma/CPP/Windows/Control/
ReBar.h
15
{ return
LRESULTToBool
(SendMessage(RB_SETBARINFO, 0, (LPARAM)barInfo)); }
17
{ return
LRESULTToBool
(SendMessage(RB_INSERTBAND, index, (LPARAM)bandInfo)); }
19
{ return
LRESULTToBool
(SendMessage(RB_SETBANDINFO, index, (LPARAM)bandInfo)); }
23
{ return
LRESULTToBool
(SendMessage(RB_SIZETORECT, 0, (LPARAM)rect)); }
29
{ return
LRESULTToBool
(SendMessage(RB_DELETEBAND, index)); }
ToolBar.h
28
return
LRESULTToBool
(SendMessage(TB_GETMAXSIZE, 0, (LPARAM)size));
32
bool EnableButton(UINT buttonID, bool enable) { return
LRESULTToBool
(SendMessage(TB_ENABLEBUTTON, buttonID, MAKELONG(BoolToBOOL(enable), 0))); }
35
bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return
LRESULTToBool
(SendMessage(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); }
37
bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return
LRESULTToBool
(SendMessage(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); }
StatusBar.h
19
{ return
LRESULTToBool
(SendMessage(SB_SETTEXT, index | type, (LPARAM)text)); }
29
{ return
LRESULTToBool
(SendMessage(SB_SETTEXTW, index | type, (LPARAM)text)); }
35
{ return
LRESULTToBool
(SendMessage(SB_SETPARTS, numParts, (LPARAM)edgePostions)); }
ComboBox.h
45
bool SetUnicodeFormat(bool fUnicode) { return
LRESULTToBool
(SendMessage(CBEM_SETUNICODEFORMAT, BOOLToBool(fUnicode), 0)); }
/external/lzma/CPP/Windows/
Defs.h
9
inline bool
LRESULTToBool
(LRESULT v) { return (v != FALSE); }
Completed in 7081 milliseconds