Improved Windows support
This commit is contained in:
6
src/dll/DLL.go
Normal file
6
src/dll/DLL.go
Normal file
@ -0,0 +1,6 @@
|
||||
package dll
|
||||
|
||||
type DLL struct {
|
||||
Name string
|
||||
Functions []string
|
||||
}
|
24
src/dll/List.go
Normal file
24
src/dll/List.go
Normal file
@ -0,0 +1,24 @@
|
||||
package dll
|
||||
|
||||
// List is a slice of DLLs.
|
||||
type List []DLL
|
||||
|
||||
// Index returns the position of the given function name.
|
||||
func (list List) Index(dllName string, funcName string) int {
|
||||
index := 0
|
||||
|
||||
for _, dll := range list {
|
||||
if dll.Name != dllName {
|
||||
index += len(dll.Functions) + 1
|
||||
continue
|
||||
}
|
||||
|
||||
for i, fn := range dll.Functions {
|
||||
if fn == funcName {
|
||||
return index + i
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return -1
|
||||
}
|
Reference in New Issue
Block a user