ntdll: Export the libwine version functions from ntdll too.
This commit is contained in:
parent
8505f1429d
commit
ccd0d6259d
|
@ -23,6 +23,7 @@
|
|||
#include <time.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "wine/library.h"
|
||||
#include "wine/debug.h"
|
||||
#include "ntdll_misc.h"
|
||||
|
||||
|
@ -138,6 +139,22 @@ double CDECL NTDLL__CIpow(double x,double y)
|
|||
#endif /* !defined(__i386__) */
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue