| 2007 | } |
| 2008 | |
| 2009 | static DWORD WINAPI CryptThreadProc(_In_ LPVOID lpParameter |
| 2010 | |
| 2011 | ) { |
| 2012 | CryptThreadData *tdata = (CryptThreadData *)lpParameter; |
| 2013 | |
| 2014 | NTSTATUS status = DokanMain(&tdata->options, &tdata->operations); |
| 2015 | |
| 2016 | return (DWORD)status; |
| 2017 | } |
| 2018 | |
| 2019 | int mount_crypt_fs(const WCHAR* mountpoint, const WCHAR *path, |
| 2020 | const WCHAR *config_path, const WCHAR *password, |
nothing calls this directly
no outgoing calls
no test coverage detected