-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule metamod-source
updated
17 files
+6 −1 | AMBuildScript | |
+4 −1 | core/AMBuilder | |
+33 −10 | core/metamod.cpp | |
+129 −0 | core/sourcehook/sh_asm.h | |
+586 −0 | core/sourcehook/sh_asm_x86_64.h | |
+21 −0 | core/sourcehook/sourcehook.cpp | |
+3 −2 | core/sourcehook/sourcehook.h | |
+32 −1,965 | core/sourcehook/sourcehook_hookmangen.cpp | |
+10 −229 | core/sourcehook/sourcehook_hookmangen.h | |
+1,970 −0 | core/sourcehook/sourcehook_hookmangen_x86.cpp | |
+118 −1 | core/sourcehook/sourcehook_hookmangen_x86.h | |
+1,433 −0 | core/sourcehook/sourcehook_hookmangen_x86_64.cpp | |
+90 −0 | core/sourcehook/sourcehook_hookmangen_x86_64.h | |
+21 −0 | core/sourcehook/sourcehook_impl.h | |
+13 −0 | core/sourcehook/sourcehook_impl_chookmaninfo.cpp | |
+1 −1 | hl2sdk-manifests | |
+10 −5 | samples/s2_sample_mm/AMBuildScript |
Submodule plugify
updated
23 files
+1 −1 | CMakeLists.txt | |
+1 −1 | include/plugify/function.h | |
+9 −2 | include/plugify/language_module.h | |
+11 −13 | include/plugify/language_module_descriptor.h | |
+8 −11 | include/plugify/method.h | |
+6 −8 | include/plugify/module.h | |
+2 −4 | include/plugify/plugify_provider.h | |
+8 −9 | include/plugify/plugin.h | |
+12 −14 | include/plugify/plugin_descriptor.h | |
+1 −1 | include/plugify/plugin_manager.h | |
+6 −8 | include/plugify/plugin_reference_descriptor.h | |
+23 −7 | include/plugify/reference_wrapper.h | |
+40 −1 | src/core/module.cpp | |
+2 −2 | src/core/module.h | |
+3 −2 | src/core/plugin.h | |
+9 −9 | src/interface/language_module_descriptor.cpp | |
+3 −3 | src/interface/method.cpp | |
+4 −4 | src/interface/module.cpp | |
+3 −3 | src/interface/plugin.cpp | |
+10 −10 | src/interface/plugin_descriptor.cpp | |
+1 −1 | src/interface/plugin_reference_descriptor.cpp | |
+6 −0 | src/utils/assembly_windows.cpp | |
+3 −14 | src/utils/sha256.cpp |