summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AAA_GOFILES/link_windows_386.go8
-rw-r--r--AAA_GOFILES/link_windows_amd64.go8
-rw-r--r--link_windows_386.go7
-rw-r--r--link_windows_amd64.go7
4 files changed, 14 insertions, 16 deletions
diff --git a/AAA_GOFILES/link_windows_386.go b/AAA_GOFILES/link_windows_386.go
deleted file mode 100644
index d617a20..0000000
--- a/AAA_GOFILES/link_windows_386.go
+++ /dev/null
@@ -1,8 +0,0 @@
-// 13 december 2015
-
-package ui
-
-// #cgo LDFLAGS: ${SRCDIR}/libui_windows_386.a
-// /* note the order; also note the lack of uuid */
-// #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++
-import "C"
diff --git a/AAA_GOFILES/link_windows_amd64.go b/AAA_GOFILES/link_windows_amd64.go
deleted file mode 100644
index 73c94af..0000000
--- a/AAA_GOFILES/link_windows_amd64.go
+++ /dev/null
@@ -1,8 +0,0 @@
-// 13 december 2015
-
-package ui
-
-// #cgo LDFLAGS: ${SRCDIR}/libui_windows_amd64.a
-// /* note the order; also note the lack of uuid */
-// #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++
-import "C"
diff --git a/link_windows_386.go b/link_windows_386.go
new file mode 100644
index 0000000..e0fb88e
--- /dev/null
+++ b/link_windows_386.go
@@ -0,0 +1,7 @@
+// 13 december 2015
+
+package ui
+
+// #cgo LDFLAGS: ${SRCDIR}/libui_windows_386.a
+// #cgo LDFLAGS: -luser32 -lkernel32 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -luuid -lwindowscodecs -static -static-libgcc -static-libstdc++
+import "C"
diff --git a/link_windows_amd64.go b/link_windows_amd64.go
new file mode 100644
index 0000000..2206355
--- /dev/null
+++ b/link_windows_amd64.go
@@ -0,0 +1,7 @@
+// 13 december 2015
+
+package ui
+
+// #cgo LDFLAGS: ${SRCDIR}/libui_windows_amd64.a
+// #cgo LDFLAGS: -luser32 -lkernel32 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -luuid -lwindowscodecs -static -static-libgcc -static-libstdc++
+import "C"