func renamed

This commit is contained in:
D3Ext
2023-10-13 13:35:24 +02:00
parent 98eadc8787
commit 2f92e546c2
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -245,5 +245,8 @@ This project is under [MIT](https://github.com/D3Ext/Hooka/blob/main/LICENSE) li
Copyright © 2023, *D3Ext*
# Support
<a href="https://www.buymeacoffee.com/D3Ext" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-blue.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
+1 -1
View File
@@ -52,7 +52,7 @@ func FuncFromHash(hash string, dll string, hashing_func func(str string) string)
return 0, "", errors.New("function not found!")
}
func GetSysIdHashing(hash string, hashing_func func(str string) string) (uint16, string, error) {
func HalosFuncFromHash(hash string, hashing_func func(str string) string) (uint16, string, error) {
var ntdll_pe *pe.File
var err error
+1 -1
View File
@@ -6,6 +6,6 @@ func FuncFromHash(hash string, dll string, hashing_func func(string) string) (ui
return core.FuncFromHash(hash, dll, hashing_func)
}
func GetSysIdHashing(hash string, hashing_func func(str string) string) (uint16, string, error) {
func HalosFuncFromHash(hash string, hashing_func func(str string) string) (uint16, string, error) {
return core.GetSysIdHashing(hash, hashing_func)
}