| 1968 | } |
| 1969 | |
| 1970 | static NTSTATUS DOKAN_CALLBACK CryptUnmounted(PDOKAN_FILE_INFO DokanFileInfo) { |
| 1971 | CryptContext *con = GetContext(); |
| 1972 | |
| 1973 | DbgPrint(L"Unmounted\n"); |
| 1974 | return STATUS_SUCCESS; |
| 1975 | } |
| 1976 | |
| 1977 | static NTSTATUS DOKAN_CALLBACK CryptGetDiskFreeSpace( |
| 1978 | PULONGLONG FreeBytesAvailable, PULONGLONG TotalNumberOfBytes, |
nothing calls this directly
no test coverage detected