| 411 | } |
| 412 | |
| 413 | BOOL CMountPropertyPage::IsDriveLetterAvailable(WCHAR dl) |
| 414 | { |
| 415 | if (dl >= 'A' && dl <= 'Z') |
| 416 | return (GetUsedDrives() & (1 << (dl - 'A'))) == 0; |
| 417 | else |
| 418 | return FALSE; |
| 419 | } |
| 420 | |
| 421 | |
| 422 | void CMountPropertyPage::DoDataExchange(CDataExchange* pDX) |
nothing calls this directly
no outgoing calls
no test coverage detected