| 2807 | } |
| 2808 | |
| 2809 | bool get_fs_info(const wchar_t *mountpoint, FsInfo& info) |
| 2810 | { |
| 2811 | MountPointManager& mp_man = MountPointManager::getInstance(); |
| 2812 | |
| 2813 | CryptThreadData *tdata = mp_man.get(mountpoint); |
| 2814 | if (!tdata) { |
| 2815 | return false; |
| 2816 | } |
| 2817 | |
| 2818 | tdata->con.GetFsInfo(info); |
| 2819 | |
| 2820 | return true; |
| 2821 | } |
| 2822 | |
| 2823 | void crypt_at_exit() |
| 2824 | { |
no test coverage detected