Lines Matching refs:dwOptions
25 DWORD dwOptions = OPTION_THREE_CARDS; variable
79 (LPBYTE)&dwOptions, in LoadSettings()
115 (CONST BYTE *)&dwOptions, in SaveSettings()
132 if ((dwOptions & OPTION_SCORE_STD) && (dwOptions & OPTION_SCORE_VEGAS)) in GetScoreMode()
137 if (dwOptions & OPTION_SCORE_STD) in GetScoreMode()
142 if (dwOptions & OPTION_SCORE_VEGAS) in GetScoreMode()
163 if (dwOptions & OPTION_SHOW_TIME) in UpdateStatusBar()
174 if (dwOptions & OPTION_SHOW_TIME) in SetPlayTimer()
300 (dwOptions & OPTION_THREE_CARDS) ? IDC_OPT_DRAWTHREE : IDC_OPT_DRAWONE); in OptionsDlgProc()
304 (dwOptions & OPTION_SHOW_STATUS) ? BST_CHECKED : BST_UNCHECKED); in OptionsDlgProc()
308 (dwOptions & OPTION_SHOW_TIME) ? BST_CHECKED : BST_UNCHECKED); in OptionsDlgProc()
312 (dwOptions & OPTION_KEEP_SCORE) ? BST_CHECKED : BST_UNCHECKED); in OptionsDlgProc()
347 dwOptions &= ~OPTION_THREE_CARDS; in OptionsDlgProc()
349 dwOptions |= OPTION_THREE_CARDS; in OptionsDlgProc()
352 dwOptions |= OPTION_SHOW_STATUS; in OptionsDlgProc()
354 dwOptions &= ~OPTION_SHOW_STATUS; in OptionsDlgProc()
357 dwOptions |= OPTION_SHOW_TIME; in OptionsDlgProc()
359 dwOptions &= ~OPTION_SHOW_TIME; in OptionsDlgProc()
362 dwOptions |= OPTION_KEEP_SCORE; in OptionsDlgProc()
364 dwOptions &= ~OPTION_KEEP_SCORE; in OptionsDlgProc()
368 dwOptions |= OPTION_SCORE_STD; in OptionsDlgProc()
369 dwOptions &= ~OPTION_SCORE_VEGAS; in OptionsDlgProc()
373 dwOptions |= OPTION_SCORE_VEGAS; in OptionsDlgProc()
374 dwOptions &= ~OPTION_SCORE_STD; in OptionsDlgProc()
378 dwOptions |= OPTION_SCORE_VEGAS; in OptionsDlgProc()
379 dwOptions |= OPTION_SCORE_STD; in OptionsDlgProc()
398 DWORD dwOldOptions = dwOptions; in ShowGameOptionsDlg()
405 if (((dwOldOptions & OPTION_THREE_CARDS) != (dwOptions & OPTION_THREE_CARDS)) || in ShowGameOptionsDlg()
406 ((dwOldOptions & OPTION_SHOW_TIME) != (dwOptions & OPTION_SHOW_TIME)) || in ShowGameOptionsDlg()
410 if ((dwOldOptions & OPTION_SHOW_STATUS) != (dwOptions & OPTION_SHOW_STATUS)) in ShowGameOptionsDlg()
418 if (dwOptions & OPTION_SHOW_STATUS) in ShowGameOptionsDlg()
645 if (!(dwOptions & OPTION_SHOW_STATUS)) in WndProc()
669 else if (dwOptions & OPTION_SHOW_TIME) in WndProc()
686 if (dwOptions & OPTION_SHOW_STATUS) in WndProc()
713 (dwOptions & OPTION_SHOW_STATUS ? nStatusHeight : 0); in WndProc()