Commit ccd0d625 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Export the libwine version functions from ntdll too.

parent 8505f142
......@@ -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 )
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment