Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0ed1041c
Commit
0ed1041c
authored
Apr 01, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Don't use 16-bit headers.
parent
129ba5ad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
4 deletions
+21
-4
olepicture.c
dlls/oleaut32/olepicture.c
+1
-2
typelib.c
dlls/oleaut32/typelib.c
+20
-1
typelib.h
dlls/oleaut32/typelib.h
+0
-1
No files found.
dlls/oleaut32/olepicture.c
View file @
0ed1041c
...
...
@@ -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"
...
...
dlls/oleaut32/typelib.c
View file @
0ed1041c
...
...
@@ -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
);
...
...
dlls/oleaut32/typelib.h
View file @
0ed1041c
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment