mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
8 lines
143 B
Go
8 lines
143 B
Go
// +build !windows
|
|
|
|
package ole
|
|
|
|
func getClassInfo(disp *IProvideClassInfo) (tinfo *ITypeInfo, err error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|