mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-23 07:59:56 +00:00
13 lines
203 B
Go
13 lines
203 B
Go
//go:build 386 || arm
|
|
// +build 386 arm
|
|
|
|
package ole
|
|
|
|
type VARIANT struct {
|
|
VT VT // 2
|
|
wReserved1 uint16 // 4
|
|
wReserved2 uint16 // 6
|
|
wReserved3 uint16 // 8
|
|
Val int64 // 16
|
|
}
|