fix
This commit is contained in:
		| @@ -102,7 +102,10 @@ public: | ||||
|  | ||||
|   auto Init(PVOID host) -> NTSTATUS override; | ||||
|  | ||||
|   [[nodiscard]] auto mount(const std::vector<std::string> &drive_args) -> int; | ||||
|   [[nodiscard]] auto mount(std::vector<std::string> orig_args, | ||||
|                            std::vector<std::string> drive_args, | ||||
|                            provider_type prov, std::string_view unique_id) | ||||
|       -> int; | ||||
|  | ||||
|   auto Mounted(PVOID host) -> NTSTATUS override; | ||||
|  | ||||
|   | ||||
| @@ -245,8 +245,10 @@ auto remote_winfsp_drive::Init(PVOID host) -> NTSTATUS { | ||||
|   return STATUS_SUCCESS; | ||||
| } | ||||
|  | ||||
| auto remote_winfsp_drive::mount(const std::vector<std::string> &drive_args) | ||||
|     -> int { | ||||
| auto remote_winfsp_drive::mount(std::vector<std::string> /* orig_args */, | ||||
|                                 std::vector<std::string> drive_args, | ||||
|                                 provider_type /* prov */, | ||||
|                                 std::string_view /* unique_id */) -> int { | ||||
|   REPERTORY_USES_FUNCTION_NAME(); | ||||
|  | ||||
|   std::vector<std::string> parsed_drive_args; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user