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
5f95aa0c
Commit
5f95aa0c
authored
Aug 29, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of the unused owner_name field.
parent
3a51fbd7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
4 deletions
+0
-4
build.h
tools/winebuild/build.h
+0
-1
main.c
tools/winebuild/main.c
+0
-1
utils.c
tools/winebuild/utils.c
+0
-2
No files found.
tools/winebuild/build.h
View file @
5f95aa0c
...
...
@@ -88,7 +88,6 @@ typedef struct
{
char
*
file_name
;
/* file name of the dll */
char
*
dll_name
;
/* internal name of the dll */
char
*
owner_name
;
/* name of the 32-bit dll owning this one */
char
*
init_func
;
/* initialization routine */
SPEC_TYPE
type
;
/* type of dll (Win16/Win32) */
int
base
;
/* ordinal base */
...
...
tools/winebuild/main.c
View file @
5f95aa0c
...
...
@@ -373,7 +373,6 @@ static char **parse_options( int argc, char **argv, DLLSPEC *spec )
lib_path
[
nb_lib_paths
++
]
=
xstrdup
(
optarg
);
break
;
case
'M'
:
spec
->
owner_name
=
xstrdup
(
optarg
);
spec
->
type
=
SPEC_WIN16
;
break
;
case
'N'
:
...
...
tools/winebuild/utils.c
View file @
5f95aa0c
...
...
@@ -247,7 +247,6 @@ DLLSPEC *alloc_dll_spec(void)
spec
=
xmalloc
(
sizeof
(
*
spec
)
);
spec
->
file_name
=
NULL
;
spec
->
dll_name
=
NULL
;
spec
->
owner_name
=
NULL
;
spec
->
init_func
=
NULL
;
spec
->
type
=
SPEC_WIN32
;
spec
->
base
=
MAX_ORDINALS
;
...
...
@@ -288,7 +287,6 @@ void free_dll_spec( DLLSPEC *spec )
}
free
(
spec
->
file_name
);
free
(
spec
->
dll_name
);
free
(
spec
->
owner_name
);
free
(
spec
->
init_func
);
free
(
spec
->
entry_points
);
free
(
spec
->
names
);
...
...
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