From 8bc942907499de975a832d8b74e9dc2c1c05e77a Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Thu, 21 Mar 2002 22:47:05 +0000 Subject: [PATCH 1/1] more forward exports to NTDLL svn path=/trunk/; revision=2756 --- posix/lib/psxdll/psxdll.def | 44 ++++++++++++++++++++++++++++++++++++- posix/lib/psxdll/psxdll.edf | 44 ++++++++++++++++++++++++++++++++++++- 2 files changed, 86 insertions(+), 2 deletions(-) diff --git a/posix/lib/psxdll/psxdll.def b/posix/lib/psxdll/psxdll.def index f54bd821035..740b0039dc3 100644 --- a/posix/lib/psxdll/psxdll.def +++ b/posix/lib/psxdll/psxdll.def @@ -1,4 +1,4 @@ -; $Id: psxdll.def,v 1.6 2002/03/11 20:49:09 hyperion Exp $ +; $Id: psxdll.def,v 1.7 2002/03/21 22:47:05 hyperion Exp $ ; ; ReactOS POSIX+ Client Library ; @@ -6,6 +6,29 @@ LIBRARY PSXDLL.DLL EXPORTS +;ctype +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalpha +iswctype +iswdigit +iswlower +iswspace +iswxdigit +isxdigit +tolower +toupper +towlower +towupper + ;dirent opendir readdir @@ -28,6 +51,18 @@ fcntl ;libgen basename +;math +atan +ceil +cos +fabs +floor +log +pow +sin +sqrt +tan + ;misc ;misc/fdtable __fdtable_init @@ -91,8 +126,12 @@ printf gets ;stdlib +abs abort +atoi +atol malloc +mbstowcs realloc free calloc @@ -133,6 +172,9 @@ dup2 getcwd getpid getppid +pread +read +write ;wchar ;forward-exports to NTDLL diff --git a/posix/lib/psxdll/psxdll.edf b/posix/lib/psxdll/psxdll.edf index 1769d99e074..b541fbd918e 100644 --- a/posix/lib/psxdll/psxdll.edf +++ b/posix/lib/psxdll/psxdll.edf @@ -1,4 +1,4 @@ -; $Id: psxdll.edf,v 1.5 2002/03/10 17:10:30 hyperion Exp $ +; $Id: psxdll.edf,v 1.6 2002/03/21 22:47:05 hyperion Exp $ ; ; ReactOS POSIX+ Client Library ; @@ -6,6 +6,29 @@ LIBRARY PSXDLL.DLL EXPORTS +;ctype +isalnum=NTDLL.isalnum +isalpha=NTDLL.isalpha +iscntrl=NTDLL.iscntrl +isdigit=NTDLL.isdigit +isgraph=NTDLL.isgraph +islower=NTDLL.islower +isprint=NTDLL.isprint +ispunct=NTDLL.ispunct +isspace=NTDLL.isspace +isupper=NTDLL.isupper +iswalpha=NTDLL.iswalpha +iswctype=NTDLL.iswctype +iswdigit=NTDLL.iswdigit +iswlower=NTDLL.iswlower +iswspace=NTDLL.iswspace +iswxdigit=NTDLL.iswxdigit +isxdigit=NTDLL.isxdigit +tolower=NTDLL.tolower +toupper=NTDLL.toupper +towlower=NTDLL.towlower +towupper=NTDLL.towupper + ;dirent opendir=opendir readdir=readdir @@ -28,6 +51,18 @@ fcntl=fcntl ;libgen basename=basename +;math +atan=NTDLL.atan +ceil=NTDLL.ceil +cos=NTDLL.cos +fabs=NTDLL.fabs +floor=NTDLL.floor +log=NTDLL.log +pow=NTDLL.pow +sin=NTDLL.sin +sqrt=NTDLL.sqrt +tan=NTDLL.tan + ;misc ;misc/fdtable __fdtable_init=__fdtable_init @@ -91,8 +126,12 @@ printf=MSVCRT.printf gets=MSVCRT.gets ;stdlib +abs=NTDLL.abs abort=abort +atoi=NTDLL.atoi +atol=NTDLL.atol malloc=malloc +mbstowcs=NTDLL.mbstowcs realloc=realloc free=free calloc=calloc @@ -133,6 +172,9 @@ dup2=dup2 getcwd=getcwd getpid=getpid getppid=getppid +pread=pread +read=read +write=write ;wchar ;forward-exports to NTDLL -- 2.17.1