more forward exports to NTDLL

svn path=/trunk/; revision=2756
This commit is contained in:
KJK::Hyperion 2002-03-21 22:47:05 +00:00
parent 75deecc48d
commit 8bc9429074
2 changed files with 86 additions and 2 deletions

View 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

View 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