DarthSim 2e6296c4d9 Go go mod há 6 anos atrás
..
oleutil b66b27bef9 Errors reporting há 7 anos atrás
.travis.yml 2e6296c4d9 Go go mod há 6 anos atrás
ChangeLog.md 2e6296c4d9 Go go mod há 6 anos atrás
LICENSE b66b27bef9 Errors reporting há 7 anos atrás
README.md 2e6296c4d9 Go go mod há 6 anos atrás
appveyor.yml 2e6296c4d9 Go go mod há 6 anos atrás
com.go 384a2909c3 Update vendored dependencies há 6 anos atrás
com_func.go 384a2909c3 Update vendored dependencies há 6 anos atrás
connect.go b66b27bef9 Errors reporting há 7 anos atrás
constants.go b66b27bef9 Errors reporting há 7 anos atrás
error.go b66b27bef9 Errors reporting há 7 anos atrás
error_func.go b66b27bef9 Errors reporting há 7 anos atrás
error_windows.go b66b27bef9 Errors reporting há 7 anos atrás
go.mod 2e6296c4d9 Go go mod há 6 anos atrás
go.sum 2e6296c4d9 Go go mod há 6 anos atrás
guid.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpoint.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpoint_func.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpoint_windows.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpointcontainer.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpointcontainer_func.go b66b27bef9 Errors reporting há 7 anos atrás
iconnectionpointcontainer_windows.go b66b27bef9 Errors reporting há 7 anos atrás
idispatch.go b66b27bef9 Errors reporting há 7 anos atrás
idispatch_func.go b66b27bef9 Errors reporting há 7 anos atrás
idispatch_windows.go 384a2909c3 Update vendored dependencies há 6 anos atrás
ienumvariant.go b66b27bef9 Errors reporting há 7 anos atrás
ienumvariant_func.go b66b27bef9 Errors reporting há 7 anos atrás
ienumvariant_windows.go b66b27bef9 Errors reporting há 7 anos atrás
iinspectable.go b66b27bef9 Errors reporting há 7 anos atrás
iinspectable_func.go b66b27bef9 Errors reporting há 7 anos atrás
iinspectable_windows.go b66b27bef9 Errors reporting há 7 anos atrás
iprovideclassinfo.go b66b27bef9 Errors reporting há 7 anos atrás
iprovideclassinfo_func.go b66b27bef9 Errors reporting há 7 anos atrás
iprovideclassinfo_windows.go b66b27bef9 Errors reporting há 7 anos atrás
itypeinfo.go b66b27bef9 Errors reporting há 7 anos atrás
itypeinfo_func.go b66b27bef9 Errors reporting há 7 anos atrás
itypeinfo_windows.go b66b27bef9 Errors reporting há 7 anos atrás
iunknown.go b66b27bef9 Errors reporting há 7 anos atrás
iunknown_func.go b66b27bef9 Errors reporting há 7 anos atrás
iunknown_windows.go b66b27bef9 Errors reporting há 7 anos atrás
ole.go b66b27bef9 Errors reporting há 7 anos atrás
safearray.go b66b27bef9 Errors reporting há 7 anos atrás
safearray_func.go 384a2909c3 Update vendored dependencies há 6 anos atrás
safearray_windows.go 384a2909c3 Update vendored dependencies há 6 anos atrás
safearrayconversion.go 384a2909c3 Update vendored dependencies há 6 anos atrás
safearrayslices.go b66b27bef9 Errors reporting há 7 anos atrás
utility.go b66b27bef9 Errors reporting há 7 anos atrás
variables.go b66b27bef9 Errors reporting há 7 anos atrás
variant.go 384a2909c3 Update vendored dependencies há 6 anos atrás
variant_386.go b66b27bef9 Errors reporting há 7 anos atrás
variant_amd64.go b66b27bef9 Errors reporting há 7 anos atrás
variant_date_386.go 384a2909c3 Update vendored dependencies há 6 anos atrás
variant_date_amd64.go 384a2909c3 Update vendored dependencies há 6 anos atrás
variant_ppc64le.go 384a2909c3 Update vendored dependencies há 6 anos atrás
variant_s390x.go b66b27bef9 Errors reporting há 7 anos atrás
vt_string.go b66b27bef9 Errors reporting há 7 anos atrás
winrt.go b66b27bef9 Errors reporting há 7 anos atrás
winrt_doc.go b66b27bef9 Errors reporting há 7 anos atrás

README.md

Go OLE

Build status Build Status GoDoc

Go bindings for Windows COM using shared libraries instead of cgo.

By Yasuhiro Matsumoto.

Install

To experiment with go-ole, you can just compile and run the example program:

go get github.com/go-ole/go-ole
cd /path/to/go-ole/
go test

cd /path/to/go-ole/example/excel
go run excel.go

Continuous Integration

Continuous integration configuration has been added for both Travis-CI and AppVeyor. You will have to add these to your own account for your fork in order for it to run.

Travis-CI

Travis-CI was added to check builds on Linux to ensure that go get works when cross building. Currently, Travis-CI is not used to test cross-building, but this may be changed in the future. It is also not currently possible to test the library on Linux, since COM API is specific to Windows and it is not currently possible to run a COM server on Linux or even connect to a remote COM server.

AppVeyor

AppVeyor is used to build on Windows using the (in-development) test COM server. It is currently only used to test the build and ensure that the code works on Windows. It will be used to register a COM server and then run the test cases based on the test COM server.

The tests currently do run and do pass and this should be maintained with commits.

Versioning

Go OLE uses semantic versioning for version numbers, which is similar to the version contract of the Go language. Which means that the major version will always maintain backwards compatibility with minor versions. Minor versions will only add new additions and changes. Fixes will always be in patch.

This contract should allow you to upgrade to new minor and patch versions without breakage or modifications to your existing code. Leave a ticket, if there is breakage, so that it could be fixed.

LICENSE

Under the MIT License: http://mattn.mit-license.org/2013