mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 18:57:39 +08:00
22 lines
397 B
Go
22 lines
397 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
import (
|
|
"github.com/energye/golcl/lcl/api/dllimports"
|
|
"testing"
|
|
)
|
|
|
|
func TestProcDef(t *testing.T) {
|
|
for i, impTab := range dllimports.GetEnergyImports() {
|
|
println(i, impTab.Name())
|
|
}
|
|
|
|
}
|