1// +build ppc64le
2
3package ole
4
5type VARIANT struct {
6	VT         VT      //  2
7	wReserved1 uint16  //  4
8	wReserved2 uint16  //  6
9	wReserved3 uint16  //  8
10	Val        int64   // 16
11	_          [8]byte // 24
12}
13