Home
last modified time | relevance | path

Searched refs:LRESULTToBool (Results 1 – 5 of 5) sorted by relevance

/external/lzma/CPP/Windows/Control/
DReBar.h15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); } in SetBarInfo()
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, index, (LPARAM)bandInfo)); } in InsertBand()
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); } in SetBandInfo()
23 { return LRESULTToBool(SendMsg(RB_SIZETORECT, 0, (LPARAM)rect)); } in SizeToRect()
29 { return LRESULTToBool(SendMsg(RB_DELETEBAND, index)); } in DeleteBand()
DToolBar.h28 return LRESULTToBool(SendMsg(TB_GETMAXSIZE, 0, (LPARAM)size));
32 …bool EnableButton(UINT buttonID, bool enable) { return LRESULTToBool(SendMsg(TB_ENABLEBUTTON, butt… in EnableButton()
35 …bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, … in AddButton()
37 …bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW… in AddButtonW()
DStatusBar.h19 { return LRESULTToBool(SendMsg(SB_SETTEXT, index | type, (LPARAM)text)); } in SetText()
29 { return LRESULTToBool(SendMsg(SB_SETTEXTW, index | type, (LPARAM)text)); } in SetText()
35 { return LRESULTToBool(SendMsg(SB_SETPARTS, numParts, (LPARAM)edgePostions)); } in SetParts()
DComboBox.h47 …bool SetUnicodeFormat(bool fUnicode) { return LRESULTToBool(SendMsg(CBEM_SETUNICODEFORMAT, BOOLToB… in SetUnicodeFormat()
/external/lzma/CPP/Windows/
DDefs.h9 inline bool LRESULTToBool(LRESULT v) { return (v != FALSE); } in LRESULTToBool() function