mirror of
https://github.com/Ne0nd0g/go-clr
synced 2026-06-08 11:58:38 +00:00
39 lines
1.8 KiB
Go
39 lines
1.8 KiB
Go
// +build windows
|
|
|
|
package clr
|
|
|
|
const (
|
|
// VT_EMPTY No value was specified. If an optional argument to an Automation method is left blank, do not
|
|
// pass a VARIANT of type VT_EMPTY. Instead, pass a VARIANT of type VT_ERROR with a value of DISP_E_PARAMNOTFOUND.
|
|
VT_EMPTY uint16 = 0x0000
|
|
// VT_NULL A propagating null value was specified. (This should not be confused with the null pointer.)
|
|
// The null value is used for tri-state logic, as with SQL.
|
|
VT_NULL uint16 = 0x0001
|
|
// VT_UI1 is a Variant Type of Unsigned Integer of 1-byte
|
|
VT_UI1 uint16 = 0x0011
|
|
// VT_UT4 is a Varriant Type of Unsigned Integer of 4-byte
|
|
VT_UI4 uint16 = 0x0013
|
|
// VT_BSTR is a Variant Type of BSTR, an OLE automation type for transfering length-prefixed strings
|
|
// https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-oaut/9c5a5ce4-ff5b-45ce-b915-ada381b34ac1
|
|
VT_BSTR uint16 = 0x0008
|
|
// VT_VARIANT is a Variant Type of VARIANT, a container for a union that can hold many types of data
|
|
VT_VARIANT uint16 = 0x000c
|
|
// VT_ARRAY is a Variant Type of a SAFEARRAY
|
|
// https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-oaut/2e87a537-9305-41c6-a88b-b79809b3703a
|
|
VT_ARRAY uint16 = 0x2000
|
|
)
|
|
|
|
// from https://github.com/go-ole/go-ole/blob/master/variant_amd64.go
|
|
// https://docs.microsoft.com/en-us/windows/win32/winauto/variant-structure
|
|
// https://docs.microsoft.com/en-us/windows/win32/api/oaidl/ns-oaidl-variant
|
|
// https://docs.microsoft.com/en-us/previous-versions/windows/embedded/ms891678(v=msdn.10)?redirectedfrom=MSDN
|
|
// VARIANT Type Constants https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-oaut/3fe7db9f-5803-4dc4-9d14-5425d3f5461f
|
|
type Variant struct {
|
|
VT uint16 // VARTYPE
|
|
wReserved1 uint16
|
|
wReserved2 uint16
|
|
wReserved3 uint16
|
|
Val uintptr
|
|
_ [8]byte
|
|
}
|