diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-26 09:00:19 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-26 09:00:19 +0200 |
commit | 25bf52435cb7297531bfc3538a9c2c0f06b9f8aa (patch) | |
tree | fe400c5bee4aba1338eb9f5a7c290a2fbff94a03 /include | |
parent | 77380f34cd3c48cdabcbc6482929c922fb24d778 (diff) |
map_file_* callbacks are now static
Diffstat (limited to 'include')
-rw-r--r-- | include/PatternScanner.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/PatternScanner.h b/include/PatternScanner.h index f0be2ba..7a661aa 100644 --- a/include/PatternScanner.h +++ b/include/PatternScanner.h @@ -20,14 +20,6 @@ struct map_file_data { struct loadlib_user_data { std::vector<std::string> additionalDllSearchDirectories; }; -bool map_file_loadlib(MODULE_DATA& module, PVOID * const buffer, - SIZE_T * const size, PVOID const user_ptr); -bool map_file_loadlib_cleanup(MODULE_DATA& module, PVOID buffer, - PVOID const user_ptr); -bool map_file_kmem(MODULE_DATA& module, PVOID * const buffer, - SIZE_T * const size, PVOID const user_ptr); -bool map_file_kmem_cleanup(MODULE_DATA& module, PVOID buffer, - PVOID const user_ptr); extern const struct map_file_data map_loadlib; extern const struct map_file_data map_kmem; |