mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
384 B
19 lines
384 B
// +build !windows
|
|
|
|
package ole
|
|
|
|
func reflectQueryInterface(self interface{}, method uintptr, interfaceID *GUID, obj interface{}) (err error) {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func queryInterface(unk *IUnknown, iid *GUID) (disp *IDispatch, err error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func addRef(unk *IUnknown) int32 {
|
|
return 0
|
|
}
|
|
|
|
func release(unk *IUnknown) int32 {
|
|
return 0
|
|
}
|
|
|