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

..28-Jan-2019-

oleutil/H28-Jan-2019-268199

ChangeLog.mdH A D28-Jan-20191.9 KiB5033

README.mdH A D28-Jan-20192.2 KiB4727

appveyor.ymlH A D28-Jan-20191.7 KiB6453

com.goH A D28-Jan-201910.7 KiB330222

com_func.goH A D28-Jan-20195.3 KiB17579

connect.goH A D28-Jan-20194.3 KiB193141

constants.goH A D28-Jan-20193.5 KiB154140

error.goH A D28-Jan-20191.3 KiB5233

error_func.goH A D28-Jan-2019119 94

error_windows.goH A D28-Jan-2019650 2517

guid.goH A D28-Jan-20197.9 KiB285178

iconnectionpoint.goH A D28-Jan-2019434 2116

iconnectionpoint_func.goH A D28-Jan-2019450 2214

iconnectionpoint_windows.goH A D28-Jan-2019864 4435

iconnectionpointcontainer.goH A D28-Jan-2019354 1813

iconnectionpointcontainer_func.goH A D28-Jan-2019280 127

iconnectionpointcontainer_windows.goH A D28-Jan-2019501 2620

idispatch.goH A D28-Jan-20192.9 KiB9561

idispatch_func.goH A D28-Jan-2019473 2013

idispatch_windows.goH A D28-Jan-20196.2 KiB194183

ienumvariant.goH A D28-Jan-2019289 2015

ienumvariant_func.goH A D28-Jan-2019413 2013

ienumvariant_windows.goH A D28-Jan-20191 KiB6456

iinspectable.goH A D28-Jan-2019316 1914

iinspectable_func.goH A D28-Jan-2019323 1610

iinspectable_windows.goH A D28-Jan-20191.4 KiB7365

iprovideclassinfo.goH A D28-Jan-2019392 2216

iprovideclassinfo_func.goH A D28-Jan-2019143 84

iprovideclassinfo_windows.goH A D28-Jan-2019326 2217

itypeinfo.goH A D28-Jan-2019784 3530

itypeinfo_func.goH A D28-Jan-2019123 84

itypeinfo_windows.goH A D28-Jan-2019318 2217

iunknown.goH A D28-Jan-20191.2 KiB5845

iunknown_func.goH A D28-Jan-2019384 2013

iunknown_windows.goH A D28-Jan-20191 KiB5950

ole.goH A D28-Jan-20192.8 KiB148116

safearray.goH A D28-Jan-2019638 2815

safearray_func.goH A D28-Jan-20196.1 KiB21287

safearray_windows.goH A D28-Jan-201911.7 KiB338209

safearrayconversion.goH A D28-Jan-20193.3 KiB141115

safearrayslices.goH A D28-Jan-2019720 3424

utility.goH A D28-Jan-20192.1 KiB10272

variables.goH A D28-Jan-2019358 1712

variant.goH A D28-Jan-20192.4 KiB10683

variant_386.goH A D28-Jan-2019177 128

variant_amd64.goH A D28-Jan-2019210 139

variant_s390x.goH A D28-Jan-2019210 139

vt_string.goH A D28-Jan-20191.8 KiB5952

winrt.goH A D28-Jan-20192.4 KiB10081

winrt_doc.goH A D28-Jan-2019842 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