* include/oaidl.h: Include windows.h and ole2.h,
unless COM_NO_WINDOWS_H. [ mingw-Bugs-1742130 ] * include/oaidl.h (struct tagVARIANT): Add union members LONGLONG * pllVal and ULONGLONG * pullVal.
This commit is contained in:
parent
2d28574cc2
commit
9cb64a070d
@ -1,3 +1,12 @@
|
|||||||
|
2007-07-02 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/oaidl.h: Include windows.h and ole2.h,
|
||||||
|
unless COM_NO_WINDOWS_H.
|
||||||
|
|
||||||
|
[mingw-Bugs-1742130]
|
||||||
|
* include/oaidl.h (struct tagVARIANT): Add union members
|
||||||
|
LONGLONG * pllVal and ULONGLONG * pullVal.
|
||||||
|
|
||||||
2007-07-01 Danny Smith <dannysmith@users.sourceforge.net>
|
2007-07-01 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/ws2tcpip.h (s6_addr32): Correct definition.
|
* include/ws2tcpip.h (s6_addr32): Correct definition.
|
||||||
|
@ -4,6 +4,11 @@
|
|||||||
#pragma GCC system_header
|
#pragma GCC system_header
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef COM_NO_WINDOWS_H
|
||||||
|
#include <windows.h>
|
||||||
|
#include <ole2.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -213,6 +218,7 @@ typedef struct tagVARIANT {
|
|||||||
unsigned char *pbVal;
|
unsigned char *pbVal;
|
||||||
short *piVal;
|
short *piVal;
|
||||||
long *plVal;
|
long *plVal;
|
||||||
|
LONGLONG * pllVal;
|
||||||
float *pfltVal;
|
float *pfltVal;
|
||||||
double *pdblVal;
|
double *pdblVal;
|
||||||
VARIANT_BOOL *pboolVal;
|
VARIANT_BOOL *pboolVal;
|
||||||
@ -236,6 +242,7 @@ typedef struct tagVARIANT {
|
|||||||
CHAR *pcVal;
|
CHAR *pcVal;
|
||||||
USHORT *puiVal;
|
USHORT *puiVal;
|
||||||
ULONG *pulVal;
|
ULONG *pulVal;
|
||||||
|
ULONGLONG * pullVal;
|
||||||
INT *pintVal;
|
INT *pintVal;
|
||||||
UINT *puintVal;
|
UINT *puintVal;
|
||||||
_ANONYMOUS_STRUCT struct {
|
_ANONYMOUS_STRUCT struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user