| 2890 | } |
| 2891 | |
| 2892 | void crypt_at_start() |
| 2893 | { |
| 2894 | |
| 2895 | if (g_UseLogFile) { |
| 2896 | InitLogging(); |
| 2897 | } |
| 2898 | |
| 2899 | if (ProcessIdToSessionId(GetCurrentProcessId(), &g_SessionId)) { |
| 2900 | g_GotSessionId = TRUE; |
| 2901 | } |
| 2902 | |
| 2903 | SetDbgVars(g_DebugMode, g_UseStdErr, g_UseLogFile, g_DebugLogFile); |
| 2904 | |
| 2905 | |
| 2906 | DokanInit(); |
| 2907 | } |
| 2908 | |
| 2909 | bool have_sessionid() noexcept |
| 2910 | { |
no test coverage detected