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
117f9f97
Commit
117f9f97
authored
Oct 13, 1999
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added filename to 32 bit builtin module descriptors.
parent
d2344fbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
builtin32.h
include/builtin32.h
+1
-0
build.c
tools/build.c
+1
-0
No files found.
include/builtin32.h
View file @
117f9f97
...
@@ -12,6 +12,7 @@ typedef void (*ENTRYPOINT32)();
...
@@ -12,6 +12,7 @@ typedef void (*ENTRYPOINT32)();
typedef
struct
typedef
struct
{
{
const
char
*
name
;
/* DLL name */
const
char
*
name
;
/* DLL name */
const
char
*
filename
;
/* DLL file name */
int
base
;
/* Ordinal base */
int
base
;
/* Ordinal base */
int
nb_funcs
;
/* Number of functions */
int
nb_funcs
;
/* Number of functions */
int
nb_names
;
/* Number of function names */
int
nb_names
;
/* Number of function names */
...
...
tools/build.c
View file @
117f9f97
...
@@ -1222,6 +1222,7 @@ static int BuildSpec32File( char * specfile, FILE *outfile )
...
@@ -1222,6 +1222,7 @@ static int BuildSpec32File( char * specfile, FILE *outfile )
fprintf
(
outfile
,
"const BUILTIN32_DESCRIPTOR %s_Descriptor =
\n
{
\n
"
,
fprintf
(
outfile
,
"const BUILTIN32_DESCRIPTOR %s_Descriptor =
\n
{
\n
"
,
DLLName
);
DLLName
);
fprintf
(
outfile
,
"
\"
%s
\"
,
\n
"
,
DLLName
);
fprintf
(
outfile
,
"
\"
%s
\"
,
\n
"
,
DLLName
);
fprintf
(
outfile
,
"
\"
%s
\"
,
\n
"
,
DLLFileName
);
fprintf
(
outfile
,
" %d,
\n
"
,
Base
);
fprintf
(
outfile
,
" %d,
\n
"
,
Base
);
fprintf
(
outfile
,
" %d,
\n
"
,
Limit
-
Base
+
1
);
fprintf
(
outfile
,
" %d,
\n
"
,
Limit
-
Base
+
1
);
fprintf
(
outfile
,
" %d,
\n
"
,
nb_names
);
fprintf
(
outfile
,
" %d,
\n
"
,
nb_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