ntdll: Export the libwine version functions from ntdll too.

This commit is contained in:
Alexandre Julliard 2008-03-26 19:41:54 +01:00
parent 8505f1429d
commit ccd0d6259d
2 changed files with 21 additions and 0 deletions

View file

@ -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.@)
*/

View file

@ -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)