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
ccd0d625
Commit
ccd0d625
authored
Mar 26, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Export the libwine version functions from ntdll too.
parent
8505f142
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
misc.c
dlls/ntdll/misc.c
+17
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+4
-0
No files found.
dlls/ntdll/misc.c
View file @
ccd0d625
...
...
@@ -23,6 +23,7 @@
#include <time.h>
#include <math.h>
#include "wine/library.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
...
...
@@ -139,6 +140,22 @@ double CDECL NTDLL__CIpow(double x,double y)
/*********************************************************************
* wine_get_version (NTDLL.@)
*/
const
char
*
CDECL
NTDLL_wine_get_version
(
void
)
{
return
wine_get_version
();
}
/*********************************************************************
* wine_get_build_id (NTDLL.@)
*/
const
char
*
CDECL
NTDLL_wine_get_build_id
(
void
)
{
return
wine_get_build_id
();
}
/*********************************************************************
* abs (NTDLL.@)
*/
int
CDECL
NTDLL_abs
(
int
i
)
...
...
dlls/ntdll/ntdll.spec
View file @
ccd0d625
...
...
@@ -1382,6 +1382,10 @@
@ cdecl wine_server_send_fd(long)
@ cdecl __wine_make_process_system()
# Version
@ cdecl wine_get_version() NTDLL_wine_get_version
@ cdecl wine_get_build_id() NTDLL_wine_get_build_id
# Codepages
@ cdecl __wine_init_codepages(ptr ptr ptr)
...
...
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