oleaut32: Don't use 16-bit headers.
This commit is contained in:
parent
129ba5ade0
commit
0ed1041c63
|
@ -81,8 +81,7 @@
|
|||
#include "urlmon.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
#include "wine/wingdi16.h"
|
||||
#include "wine/library.h"
|
||||
|
||||
#include "ungif.h"
|
||||
|
||||
|
|
|
@ -66,7 +66,6 @@
|
|||
#include "winuser.h"
|
||||
#include "lzexpand.h"
|
||||
|
||||
#include "wine/winbase16.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "objbase.h"
|
||||
#include "typelib.h"
|
||||
|
@ -77,6 +76,26 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
||||
WINE_DECLARE_DEBUG_CHANNEL(typelib);
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD offset;
|
||||
WORD length;
|
||||
WORD flags;
|
||||
WORD id;
|
||||
WORD handle;
|
||||
WORD usage;
|
||||
} NE_NAMEINFO;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD type_id; /* Type identifier */
|
||||
WORD count; /* Number of resources of this type */
|
||||
DWORD resloader; /* SetResourceHandler() */
|
||||
/*
|
||||
* Name info array.
|
||||
*/
|
||||
} NE_TYPEINFO;
|
||||
|
||||
static HRESULT typedescvt_to_variantvt(ITypeInfo *tinfo, const TYPEDESC *tdesc, VARTYPE *vt);
|
||||
static HRESULT TLB_AllocAndInitVarDesc(const VARDESC *src, VARDESC **dest_ptr);
|
||||
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "oleauto.h"
|
||||
#include "wine/windef16.h"
|
||||
|
||||
#define HELPDLLFLAG (0x0100)
|
||||
#define DO_NOT_SEEK (-1)
|
||||
|
|
Loading…
Reference in New Issue