Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5b0bf5dc
Commit
5b0bf5dc
authored
Jan 22, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Convert typelib lists to standard Wine lists.
parent
5aba7b0c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
18 deletions
+13
-18
typelib.c
tools/widl/typelib.c
+5
-9
widltypes.h
tools/widl/widltypes.h
+5
-4
write_msft.c
tools/widl/write_msft.c
+3
-5
No files found.
tools/widl/typelib.c
View file @
5b0bf5dc
...
...
@@ -230,8 +230,8 @@ void start_typelib(char *name, attr_t *attrs)
typelib
->
name
=
xstrdup
(
name
);
typelib
->
filename
=
xstrdup
(
typelib_name
);
typelib
->
attrs
=
attrs
;
typelib
->
entry
=
NULL
;
typelib
->
importlibs
=
NULL
;
list_init
(
&
typelib
->
entries
)
;
list_init
(
&
typelib
->
importlibs
)
;
}
void
end_typelib
(
void
)
...
...
@@ -251,8 +251,7 @@ void add_typelib_entry(type_t *t)
chat
(
"add kind %i: %s
\n
"
,
t
->
kind
,
t
->
name
);
entry
=
xmalloc
(
sizeof
(
*
entry
));
entry
->
type
=
t
;
LINK
(
entry
,
typelib
->
entry
);
typelib
->
entry
=
entry
;
list_add_tail
(
&
typelib
->
entries
,
&
entry
->
entry
);
}
static
void
tlb_read
(
int
fd
,
void
*
buf
,
int
count
)
...
...
@@ -365,10 +364,9 @@ void add_importlib(const char *name)
if
(
!
typelib
)
return
;
for
(
importlib
=
typelib
->
importlibs
;
importlib
;
importlib
=
NEXT_LINK
(
importlib
))
{
LIST_FOR_EACH_ENTRY
(
importlib
,
&
typelib
->
importlibs
,
importlib_t
,
entry
)
if
(
!
strcmp
(
name
,
importlib
->
name
))
return
;
}
chat
(
"add_importlib: %s
\n
"
,
name
);
...
...
@@ -377,7 +375,5 @@ void add_importlib(const char *name)
importlib
->
name
=
xstrdup
(
name
);
read_importlib
(
importlib
);
LINK
(
importlib
,
typelib
->
importlibs
);
typelib
->
importlibs
=
importlib
;
list_add_head
(
&
typelib
->
importlibs
,
&
importlib
->
entry
);
}
tools/widl/widltypes.h
View file @
5b0bf5dc
...
...
@@ -24,6 +24,7 @@
#include <stdarg.h>
#include "guiddef.h"
#include "wine/rpcfc.h"
#include "wine/list.h"
#ifndef UUID_DEFINED
#define UUID_DEFINED
...
...
@@ -254,7 +255,7 @@ struct _ifref_t {
struct
_typelib_entry_t
{
type_t
*
type
;
DECL_LINK
(
typelib_entry_t
)
;
struct
list
entry
;
};
struct
_importinfo_t
{
...
...
@@ -279,15 +280,15 @@ struct _importlib_t {
int
allocated
;
DECL_LINK
(
importlib_t
)
;
struct
list
entry
;
};
struct
_typelib_t
{
char
*
name
;
char
*
filename
;
attr_t
*
attrs
;
typelib_entry_t
*
entry
;
importlib_t
*
importlibs
;
struct
list
entries
;
struct
list
importlibs
;
};
void
init_types
(
void
);
...
...
tools/widl/write_msft.c
View file @
5b0bf5dc
...
...
@@ -716,7 +716,8 @@ static importinfo_t *find_importinfo(msft_typelib_t *typelib, const char *name)
if
(
!
name
)
return
NULL
;
for
(
importlib
=
typelib
->
typelib
->
importlibs
;
importlib
;
importlib
=
NEXT_LINK
(
importlib
))
{
LIST_FOR_EACH_ENTRY
(
importlib
,
&
typelib
->
typelib
->
importlibs
,
importlib_t
,
entry
)
{
for
(
i
=
0
;
i
<
importlib
->
ntypeinfos
;
i
++
)
{
if
(
!
strcmp
(
name
,
importlib
->
importinfos
[
i
].
name
))
{
chat
(
"Found %s in importlib.
\n
"
,
name
);
...
...
@@ -2517,10 +2518,7 @@ int create_msft_typelib(typelib_t *typelib)
set_custdata
(
msft
,
&
midl_time_guid
,
VT_UI4
,
&
cur_time
,
&
msft
->
typelib_header
.
CustomDataOffset
);
set_custdata
(
msft
,
&
midl_version_guid
,
VT_UI4
,
&
version
,
&
msft
->
typelib_header
.
CustomDataOffset
);
for
(
entry
=
typelib
->
entry
;
entry
&&
NEXT_LINK
(
entry
);
entry
=
NEXT_LINK
(
entry
))
;
for
(
;
entry
;
entry
=
PREV_LINK
(
entry
))
LIST_FOR_EACH_ENTRY
(
entry
,
&
typelib
->
entries
,
typelib_entry_t
,
entry
)
add_entry
(
msft
,
entry
);
save_all_changes
(
msft
);
...
...
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