more forward exports to NTDLL
authorKJK::Hyperion <hackbunny@reactos.org>
Thu, 21 Mar 2002 22:47:05 +0000 (22:47 +0000)
committerKJK::Hyperion <hackbunny@reactos.org>
Thu, 21 Mar 2002 22:47:05 +0000 (22:47 +0000)
svn path=/trunk/; revision=2756

posix/lib/psxdll/psxdll.def
posix/lib/psxdll/psxdll.edf

index f54bd82..740b003 100644 (file)
@@ -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
index 1769d99..b541fbd 100644 (file)
@@ -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