stdole2.idl: Use more accurate sizes for Automation types.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Zebediah Figura 2018-06-04 17:59:33 -05:00 committed by Alexandre Julliard
parent 4739647405
commit 70e5d5fd2e
1 changed files with 6 additions and 6 deletions

View File

@ -32,15 +32,15 @@
]
library stdole
{
/* typedefs aren't stored in the type library.
These type names are known by the type compiler so it
doesn't really matter what we define them as. */
/* These typedefs need to have the same size as their real counterparts. */
typedef short VARIANT_BOOL;
typedef long BSTR;
typedef void *BSTR;
typedef double CURRENCY;
typedef unsigned long HRESULT;
typedef void *VARIANT;
typedef struct {
short word1, word2, word3, word4;
void *ptr1, *ptr2;
} VARIANT;
typedef unsigned long SCODE;
typedef struct GUID {