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
68f17736
Commit
68f17736
authored
Aug 29, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid using common symbols, they are broken on Mac OS.
parent
44b4c745
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
7 deletions
+3
-7
crt0_private.h
dlls/winecrt0/crt0_private.h
+2
-0
dll_entry.c
dlls/winecrt0/dll_entry.c
+0
-2
exe_entry.c
dlls/winecrt0/exe_entry.c
+0
-2
exe_wentry.c
dlls/winecrt0/exe_wentry.c
+0
-2
spec32.c
tools/winebuild/spec32.c
+1
-1
No files found.
dlls/winecrt0/crt0_private.h
View file @
68f17736
...
...
@@ -29,4 +29,6 @@ extern void _init(int argc, char **argv, char **envp );
extern
void
_fini
(
void
);
#endif
extern
int
__wine_spec_init_state
;
#endif
/* __WINE_CRT0_PRIVATE_H__ */
dlls/winecrt0/dll_entry.c
View file @
68f17736
...
...
@@ -24,8 +24,6 @@
#include "wine/library.h"
#include "crt0_private.h"
int
__wine_spec_init_state
;
extern
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
);
BOOL
WINAPI
__wine_spec_dll_entry
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
...
...
dlls/winecrt0/exe_entry.c
View file @
68f17736
...
...
@@ -25,8 +25,6 @@
#include "wine/library.h"
#include "crt0_private.h"
int
__wine_spec_init_state
;
extern
int
main
(
int
argc
,
char
*
argv
[]
);
DWORD
WINAPI
__wine_spec_exe_entry
(
PEB
*
peb
)
...
...
dlls/winecrt0/exe_wentry.c
View file @
68f17736
...
...
@@ -25,8 +25,6 @@
#include "wine/library.h"
#include "crt0_private.h"
int
__wine_spec_init_state
;
extern
int
wmain
(
int
argc
,
WCHAR
*
argv
[]
);
DWORD
WINAPI
__wine_spec_exe_wentry
(
PEB
*
peb
)
...
...
tools/winebuild/spec32.c
View file @
68f17736
...
...
@@ -489,7 +489,7 @@ void BuildSpec32File( FILE *outfile, DLLSPEC *spec )
/* Output the entry point function */
fprintf
(
outfile
,
"int __wine_spec_init_state;
\n
"
);
fprintf
(
outfile
,
"int __wine_spec_init_state
= 0
;
\n
"
);
fprintf
(
outfile
,
"extern void %s();
\n\n
"
,
spec
->
init_func
);
/* Output the NT header */
...
...
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