| 62 | } |
| 63 | |
| 64 | NTSTATUS FilesAPI::Close() { |
| 65 | NTSTATUS Status = hFile ? ZwClose(hFile) : STATUS_SUCCESS; |
| 66 | hFile = NULL; |
| 67 | return Status; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | NTSTATUS FilesAPI::CreateDir(LPCWSTR DirPath) { |
nothing calls this directly
no outgoing calls
no test coverage detected