mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 08:16:34 +00:00
more forward exports to NTDLL
svn path=/trunk/; revision=2756
This commit is contained in:
parent
75deecc48d
commit
8bc9429074
2 changed files with 86 additions and 2 deletions
|
@ -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
|
; ReactOS POSIX+ Client Library
|
||||||
;
|
;
|
||||||
|
@ -6,6 +6,29 @@
|
||||||
LIBRARY PSXDLL.DLL
|
LIBRARY PSXDLL.DLL
|
||||||
EXPORTS
|
EXPORTS
|
||||||
|
|
||||||
|
;ctype
|
||||||
|
isalnum
|
||||||
|
isalpha
|
||||||
|
iscntrl
|
||||||
|
isdigit
|
||||||
|
isgraph
|
||||||
|
islower
|
||||||
|
isprint
|
||||||
|
ispunct
|
||||||
|
isspace
|
||||||
|
isupper
|
||||||
|
iswalpha
|
||||||
|
iswctype
|
||||||
|
iswdigit
|
||||||
|
iswlower
|
||||||
|
iswspace
|
||||||
|
iswxdigit
|
||||||
|
isxdigit
|
||||||
|
tolower
|
||||||
|
toupper
|
||||||
|
towlower
|
||||||
|
towupper
|
||||||
|
|
||||||
;dirent
|
;dirent
|
||||||
opendir
|
opendir
|
||||||
readdir
|
readdir
|
||||||
|
@ -28,6 +51,18 @@ fcntl
|
||||||
;libgen
|
;libgen
|
||||||
basename
|
basename
|
||||||
|
|
||||||
|
;math
|
||||||
|
atan
|
||||||
|
ceil
|
||||||
|
cos
|
||||||
|
fabs
|
||||||
|
floor
|
||||||
|
log
|
||||||
|
pow
|
||||||
|
sin
|
||||||
|
sqrt
|
||||||
|
tan
|
||||||
|
|
||||||
;misc
|
;misc
|
||||||
;misc/fdtable
|
;misc/fdtable
|
||||||
__fdtable_init
|
__fdtable_init
|
||||||
|
@ -91,8 +126,12 @@ printf
|
||||||
gets
|
gets
|
||||||
|
|
||||||
;stdlib
|
;stdlib
|
||||||
|
abs
|
||||||
abort
|
abort
|
||||||
|
atoi
|
||||||
|
atol
|
||||||
malloc
|
malloc
|
||||||
|
mbstowcs
|
||||||
realloc
|
realloc
|
||||||
free
|
free
|
||||||
calloc
|
calloc
|
||||||
|
@ -133,6 +172,9 @@ dup2
|
||||||
getcwd
|
getcwd
|
||||||
getpid
|
getpid
|
||||||
getppid
|
getppid
|
||||||
|
pread
|
||||||
|
read
|
||||||
|
write
|
||||||
|
|
||||||
;wchar
|
;wchar
|
||||||
;forward-exports to NTDLL
|
;forward-exports to NTDLL
|
||||||
|
|
|
@ -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
|
; ReactOS POSIX+ Client Library
|
||||||
;
|
;
|
||||||
|
@ -6,6 +6,29 @@
|
||||||
LIBRARY PSXDLL.DLL
|
LIBRARY PSXDLL.DLL
|
||||||
EXPORTS
|
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
|
;dirent
|
||||||
opendir=opendir
|
opendir=opendir
|
||||||
readdir=readdir
|
readdir=readdir
|
||||||
|
@ -28,6 +51,18 @@ fcntl=fcntl
|
||||||
;libgen
|
;libgen
|
||||||
basename=basename
|
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
|
||||||
;misc/fdtable
|
;misc/fdtable
|
||||||
__fdtable_init=__fdtable_init
|
__fdtable_init=__fdtable_init
|
||||||
|
@ -91,8 +126,12 @@ printf=MSVCRT.printf
|
||||||
gets=MSVCRT.gets
|
gets=MSVCRT.gets
|
||||||
|
|
||||||
;stdlib
|
;stdlib
|
||||||
|
abs=NTDLL.abs
|
||||||
abort=abort
|
abort=abort
|
||||||
|
atoi=NTDLL.atoi
|
||||||
|
atol=NTDLL.atol
|
||||||
malloc=malloc
|
malloc=malloc
|
||||||
|
mbstowcs=NTDLL.mbstowcs
|
||||||
realloc=realloc
|
realloc=realloc
|
||||||
free=free
|
free=free
|
||||||
calloc=calloc
|
calloc=calloc
|
||||||
|
@ -133,6 +172,9 @@ dup2=dup2
|
||||||
getcwd=getcwd
|
getcwd=getcwd
|
||||||
getpid=getpid
|
getpid=getpid
|
||||||
getppid=getppid
|
getppid=getppid
|
||||||
|
pread=pread
|
||||||
|
read=read
|
||||||
|
write=write
|
||||||
|
|
||||||
;wchar
|
;wchar
|
||||||
;forward-exports to NTDLL
|
;forward-exports to NTDLL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue