Skip to content

Commit f99d9a3

Browse files
committed
init
0 parents  commit f99d9a3

File tree

10 files changed

+657
-0
lines changed

10 files changed

+657
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
out

addin.go

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package main
2+
3+
/*
4+
#include <addin.h>
5+
*/
6+
import "C"
7+
8+
func CreateComponent(pointerToAddInPointer **C.struct_AddIn, component C.struct_Component) C.long {
9+
*pointerToAddInPointer = C.CreateAddIn()
10+
return 1
11+
}

0 commit comments

Comments
 (0)