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
a8d2de60
Commit
a8d2de60
authored
Aug 12, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make wine_build a hidden symbol.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7c10730e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
loader.c
dlls/ntdll/unix/loader.c
+0
-1
system.c
dlls/ntdll/unix/system.c
+0
-1
unix_private.h
dlls/ntdll/unix/unix_private.h
+2
-0
No files found.
dlls/ntdll/unix/loader.c
View file @
a8d2de60
...
...
@@ -2220,7 +2220,6 @@ static void check_command_line( int argc, char *argv[] )
}
if
(
!
strcmp
(
argv
[
1
],
"--version"
))
{
extern
const
char
wine_build
[];
printf
(
"%s
\n
"
,
wine_build
);
exit
(
0
);
}
...
...
dlls/ntdll/unix/system.c
View file @
a8d2de60
...
...
@@ -2886,7 +2886,6 @@ NTSTATUS WINAPI NtQuerySystemInformation( SYSTEM_INFORMATION_CLASS class,
case
SystemWineVersionInformation
:
/* 1000 */
{
static
const
char
version
[]
=
PACKAGE_VERSION
;
extern
const
char
wine_build
[];
struct
utsname
buf
;
uname
(
&
buf
);
...
...
dlls/ntdll/unix/unix_private.h
View file @
a8d2de60
...
...
@@ -116,6 +116,8 @@ extern NTSTATUS CDECL fast_wait_cv( RTL_CONDITION_VARIABLE *variable, const void
extern
NTSTATUS
CDECL
unwind_builtin_dll
(
ULONG
type
,
struct
_DISPATCHER_CONTEXT
*
dispatch
,
CONTEXT
*
context
)
DECLSPEC_HIDDEN
;
extern
const
char
wine_build
[]
DECLSPEC_HIDDEN
;
extern
const
char
*
home_dir
DECLSPEC_HIDDEN
;
extern
const
char
*
data_dir
DECLSPEC_HIDDEN
;
extern
const
char
*
build_dir
DECLSPEC_HIDDEN
;
...
...
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