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
fdb4c7e9
Commit
fdb4c7e9
authored
Jun 27, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Fixed syntax of DECL_LINK macro to look more like C code.
parent
a7d008f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
widltypes.h
tools/widl/widltypes.h
+9
-9
No files found.
tools/widl/widltypes.h
View file @
fdb4c7e9
...
...
@@ -48,7 +48,7 @@ typedef struct _typelib_t typelib_t;
#define DECL_LINK(type) \
type *l_next; \
type *l_prev
;
type *l_prev
#define LINK(x,y) do { x->l_next = y; if (y) y->l_prev = x; } while (0)
...
...
@@ -178,7 +178,7 @@ struct _attr_t {
void
*
pval
;
}
u
;
/* parser-internal */
DECL_LINK
(
attr_t
)
DECL_LINK
(
attr_t
)
;
};
struct
_expr_t
{
...
...
@@ -194,7 +194,7 @@ struct _expr_t {
int
is_const
;
long
cval
;
/* parser-internal */
DECL_LINK
(
expr_t
)
DECL_LINK
(
expr_t
)
;
};
struct
_type_t
{
...
...
@@ -208,7 +208,7 @@ struct _type_t {
int
defined
,
written
,
user_types_registered
;
int
typelib_idx
;
/* parser-internal */
DECL_LINK
(
type_t
)
DECL_LINK
(
type_t
)
;
};
struct
_typeref_t
{
...
...
@@ -228,7 +228,7 @@ struct _var_t {
expr_t
*
eval
;
/* parser-internal */
DECL_LINK
(
var_t
)
DECL_LINK
(
var_t
)
;
};
struct
_func_t
{
...
...
@@ -237,7 +237,7 @@ struct _func_t {
int
ignore
,
idx
;
/* parser-internal */
DECL_LINK
(
func_t
)
DECL_LINK
(
func_t
)
;
};
struct
_ifref_t
{
...
...
@@ -245,7 +245,7 @@ struct _ifref_t {
attr_t
*
attrs
;
/* parser-internal */
DECL_LINK
(
ifref_t
)
DECL_LINK
(
ifref_t
)
;
};
struct
_class_t
{
...
...
@@ -254,7 +254,7 @@ struct _class_t {
ifref_t
*
ifaces
;
/* parser-internal */
DECL_LINK
(
class_t
)
DECL_LINK
(
class_t
)
;
};
struct
_typelib_entry_t
{
...
...
@@ -267,7 +267,7 @@ struct _typelib_entry_t {
type_t
*
enumeration
;
var_t
*
tdef
;
}
u
;
DECL_LINK
(
typelib_entry_t
)
DECL_LINK
(
typelib_entry_t
)
;
};
struct
_importinfo_t
{
...
...
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