From cfa2040536729324369ac9b99ca75d03a51e9163 Mon Sep 17 00:00:00 2001 From: xerox Date: Tue, 1 Sep 2020 18:20:25 +0000 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d83e88..50890f6 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ const auto[result, reg_key] = driver::load(drv_buffer.data(), drv_buffer.size()) load driver from path on disk. ```cpp -const bool result = driver::load("image.sys", "image_key"); +const bool result = driver::load("image.sys", "service_name"); ``` unloading driver. ```cpp -const bool result = driver::unload("image_key"); +const bool result = driver::unload("service_name"); ``` \ No newline at end of file