mirror of
https://github.com/fleetdm/fleet
synced 2026-05-01 18:37:37 +00:00
21 lines
580 B
Go
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
|
|
}
|