Skip to content

Commit

Permalink
Fix wrong name
Browse files Browse the repository at this point in the history
  • Loading branch information
qubka committed Nov 16, 2024
1 parent 4b0ae04 commit 24ea37e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ PLUGIN_API void UnhookAll() {
}

extern "C"
PLUGIN_API void HookAllVirtual(void* pClass) {
PLUGIN_API void UnhookAllVirtual(void* pClass) {
g_polyHookPlugin.unhookAllVirtual(pClass);
}

Expand Down
2 changes: 1 addition & 1 deletion sym/exported_symbols.lds
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FindVirtual
FindVirtualByFunc
FindOriginalAddr
UnhookAll
HookAllVirtual
UnhookAllVirtual
AddCallback
RemoveCallback
IsCallbackRegistered
Expand Down
2 changes: 1 addition & 1 deletion sym/version_script.lds
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
FindVirtualByFunc;
FindOriginalAddr;
UnhookAll;
HookAllVirtual;
UnhookAllVirtual;
AddCallback;
RemoveCallback;
IsCallbackRegistered;
Expand Down

0 comments on commit 24ea37e

Please sign in to comment.