fleet/orbit/pkg/windows/windowsupdate/iimageinformation.go
2023-11-01 20:11:35 -06:00

21 lines
580 B
Go

// based on github.com/kolide/launcher/pkg/osquery/tables
package windowsupdate
import (
"github.com/go-ole/go-ole"
)
// IImageInformation contains information about a localized image that is associated with an update or a category.
// https://docs.microsoft.com/zh-cn/windows/win32/api/wuapi/nn-wuapi-iimageinformation
type IImageInformation struct {
disp *ole.IDispatch //nolint:unused
AltText string
Height int64
Source string
Width int64
}
func toIImageInformation(imageInformationDisp *ole.IDispatch) (*IImageInformation, error) {
// TODO
return nil, nil
}