• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-Nov-2018-

oleutil/H13-Nov-2018-268199

ChangeLog.mdH A D13-Nov-20181.9 KiB5033

README.mdH A D13-Nov-20182.2 KiB4727

appveyor.ymlH A D13-Nov-20181.7 KiB6453

com.goH A D13-Nov-201810.7 KiB330222

com_func.goH A D13-Nov-20185.3 KiB17579

connect.goH A D13-Nov-20184.3 KiB193141

constants.goH A D13-Nov-20183.5 KiB154140

error.goH A D13-Nov-20181.3 KiB5233

error_func.goH A D13-Nov-2018119 94

error_windows.goH A D13-Nov-2018650 2517

guid.goH A D13-Nov-20187.9 KiB285178

iconnectionpoint.goH A D13-Nov-2018434 2116

iconnectionpoint_func.goH A D13-Nov-2018450 2214

iconnectionpoint_windows.goH A D13-Nov-2018864 4435

iconnectionpointcontainer.goH A D13-Nov-2018354 1813

iconnectionpointcontainer_func.goH A D13-Nov-2018280 127

iconnectionpointcontainer_windows.goH A D13-Nov-2018501 2620

idispatch.goH A D13-Nov-20182.9 KiB9561

idispatch_func.goH A D13-Nov-2018473 2013

idispatch_windows.goH A D13-Nov-20186.2 KiB194183

ienumvariant.goH A D13-Nov-2018289 2015

ienumvariant_func.goH A D13-Nov-2018413 2013

ienumvariant_windows.goH A D13-Nov-20181 KiB6456

iinspectable.goH A D13-Nov-2018316 1914

iinspectable_func.goH A D13-Nov-2018323 1610

iinspectable_windows.goH A D13-Nov-20181.4 KiB7365

iprovideclassinfo.goH A D13-Nov-2018392 2216

iprovideclassinfo_func.goH A D13-Nov-2018143 84

iprovideclassinfo_windows.goH A D13-Nov-2018326 2217

itypeinfo.goH A D13-Nov-2018784 3530

itypeinfo_func.goH A D13-Nov-2018123 84

itypeinfo_windows.goH A D13-Nov-2018318 2217

iunknown.goH A D13-Nov-20181.2 KiB5845

iunknown_func.goH A D13-Nov-2018384 2013

iunknown_windows.goH A D13-Nov-20181 KiB5950

ole.goH A D13-Nov-20182.8 KiB148116

safearray.goH A D13-Nov-2018638 2815

safearray_func.goH A D13-Nov-20186.1 KiB21287

safearray_windows.goH A D13-Nov-201811.7 KiB338209

safearrayconversion.goH A D13-Nov-20183.3 KiB141115

safearrayslices.goH A D13-Nov-2018720 3424

utility.goH A D13-Nov-20182.1 KiB10272

variables.goH A D13-Nov-2018358 1712

variant.goH A D13-Nov-20182.4 KiB10683

variant_386.goH A D13-Nov-2018177 128

variant_amd64.goH A D13-Nov-2018210 139

variant_s390x.goH A D13-Nov-2018210 139

vt_string.goH A D13-Nov-20181.8 KiB5952

winrt.goH A D13-Nov-20182.4 KiB10081

winrt_doc.goH A D13-Nov-2018842 3720

README.md

1#Go OLE
2
3[![Build status](https://ci.appveyor.com/api/projects/status/qr0u2sf7q43us9fj?svg=true)](https://ci.appveyor.com/project/jacobsantos/go-ole-jgs28)
4[![Build Status](https://travis-ci.org/go-ole/go-ole.svg?branch=master)](https://travis-ci.org/go-ole/go-ole)
5[![GoDoc](https://godoc.org/github.com/go-ole/go-ole?status.svg)](https://godoc.org/github.com/go-ole/go-ole)
6
7Go bindings for Windows COM using shared libraries instead of cgo.
8
9By Yasuhiro Matsumoto.
10
11## Install
12
13To experiment with go-ole, you can just compile and run the example program:
14
15```
16go get github.com/go-ole/go-ole
17cd /path/to/go-ole/
18go test
19
20cd /path/to/go-ole/example/excel
21go run excel.go
22```
23
24## Continuous Integration
25
26Continuous 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.
27
28**Travis-CI**
29
30Travis-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.
31
32**AppVeyor**
33
34AppVeyor 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.
35
36The tests currently do run and do pass and this should be maintained with commits.
37
38##Versioning
39
40Go OLE uses [semantic versioning](http://semver.org) 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.
41
42This 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.
43
44##LICENSE
45
46Under the MIT License: http://mattn.mit-license.org/2013
47