| 473 | } |
| 474 | |
| 475 | BOOL CcppcryptfsApp::WriteProfileBinary(LPCWSTR section, LPCWSTR entry, LPBYTE pData, UINT nBytes) |
| 476 | { |
| 477 | if (lstrcmpi(section, CryptSettingsRegValName) && NeverSaveHistory()) { |
| 478 | return TRUE; |
| 479 | } |
| 480 | |
| 481 | return CWinApp::WriteProfileBinary(section, entry, pData, nBytes); |
| 482 | } |
| 483 | |
| 484 | |
| 485 | void CcppcryptfsApp::SendCmdArgsToSelf(HANDLE hPipe) |
no test coverage detected