use our own callback so rest of the code doesn't need to know about Dokany internals
| 1011 | |
| 1012 | // use our own callback so rest of the code doesn't need to know about Dokany internals |
| 1013 | static int WINAPI crypt_fill_find_data(PWIN32_FIND_DATAW fdata, |
| 1014 | PWIN32_FIND_DATAW fdata_orig, |
| 1015 | void *dokan_cb, void *dokan_ctx) { |
| 1016 | return ((PFillFindData)dokan_cb)(fdata, (PDOKAN_FILE_INFO)dokan_ctx); |
| 1017 | } |
| 1018 | |
| 1019 | static NTSTATUS DOKAN_CALLBACK |
| 1020 | CryptFindFiles(LPCWSTR FileName, |
nothing calls this directly
no outgoing calls
no test coverage detected