Improved Windows support

This commit is contained in:
2024-08-19 17:25:51 +02:00
parent e9a0494aa7
commit 6b48ee0a48
8 changed files with 50 additions and 8 deletions

View File

@ -5,7 +5,7 @@ type List []DLL
// Append adds a function for the given DLL if it doesn't exist yet.
func (list List) Append(dllName string, funcName string) List {
for _, dll := range list {
for i, dll := range list {
if dll.Name != dllName {
continue
}
@ -16,13 +16,24 @@ func (list List) Append(dllName string, funcName string) List {
}
}
dll.Functions = append(dll.Functions, funcName)
list[i].Functions = append(list[i].Functions, funcName)
return list
}
return append(list, DLL{Name: dllName, Functions: []string{funcName}})
}
// Contains returns true if the library exists.
func (list List) Contains(dllName string) bool {
for _, dll := range list {
if dll.Name == dllName {
return true
}
}
return false
}
// Index returns the position of the given function name.
func (list List) Index(dllName string, funcName string) int {
index := 0