MCPcopy Create free account
hub / github.com/derceg/explorerplusplus / lCheckDlgButton

Function lCheckDlgButton

Explorer++/Helper/Controls.cpp:185–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185BOOL lCheckDlgButton(HWND hDlg, int buttonId, BOOL bCheck)
186{
187 UINT uCheck;
188
189 if(bCheck)
190 {
191 uCheck = BST_CHECKED;
192 }
193 else
194 {
195 uCheck = BST_UNCHECKED;
196 }
197
198 return CheckDlgButton(hDlg, buttonId, uCheck);
199}
200
201void AddStyleToToolbar(UINT *fStyle, UINT fStyleToAdd)
202{

Callers 1

OnInitDialogMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected