12 lines
209 B
Go
12 lines
209 B
Go
|
package winloader
|
||
|
|
||
|
import (
|
||
|
"github.com/jchv/go-winloader/internal/loader"
|
||
|
)
|
||
|
|
||
|
// Proc represents a proc of a module.
|
||
|
type Proc = loader.Proc
|
||
|
|
||
|
// Module represents a loaded module.
|
||
|
type Module = loader.Module
|