From 487e61e7bb06843196e525137ced6d027f75713c Mon Sep 17 00:00:00 2001 From: paring Date: Sun, 6 Nov 2022 03:23:25 +0000 Subject: [PATCH] fix: parameter name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86c2b9a..70e0187 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The exported functions are simple. Just `start_hook` and `stop_hook` ### start_hook ```cs -public static delegate void HookCallback(NativeEvent event); +public static delegate void HookCallback(NativeEvent ev); [DllImport("skyhook", EntryPoint = "start_hook")] public static extern void StartHook(HookCallback callback);