Improved Windows support
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user