now introducing the POSIX+ client DLL! (my first check-in, hope I don't f*** up somet...
[reactos.git] / posix / lib / psxdll / psxdll.def
1 ; $Id: psxdll.def,v 1.1 2002/02/20 07:06:50 hyperion Exp $
2 ;
3 ; ReactOS POSIX Client Library
4 ;
5
6 LIBRARY PSXDLL.DLL
7 EXPORTS
8
9 ;dirent
10 opendir
11 readdir
12 closedir
13
14 ;dlfcn
15 dlopen
16 dlclose
17 dlsym
18 dlerror
19
20 ;errno
21 __PdxGetThreadErrNum
22
23 ;fcntl
24 open
25 creat
26 fcntl
27
28 ;libgen
29 basename
30
31 ;misc
32 ;path
33 __PdxPosixPathGetNextComponent_A
34 __PdxPosixPathGetNextComponent_U
35 __PdxPosixPathResolve_A
36 __PdxPosixPathResolve_U
37 __PdxPosixPathNameToNtPathName
38 ;fdtable
39 __fdtable_init
40 __fdtable_free
41 __fdtable_entry_nextavail
42 __fdtable_entry_add
43 __fdtable_entry_remove
44 __fdtable_entry_get
45 ;safeobj
46 __safeobj_validate
47
48 ;pthread
49 pthread_create
50 pthread_exit
51 pthread_join
52 pthread_mutex_destroy
53 pthread_mutex_init
54 pthread_mutex_lock
55 pthread_mutex_trylock
56 pthread_mutex_unlock
57 pthread_mutex_getprioceiling
58 pthread_mutex_setprioceiling
59 pthread_mutexattr_destroy
60 pthread_mutexattr_getpshared
61 pthread_mutexattr_init
62 pthread_mutexattr_setpshared
63 pthread_mutexattr_gettype
64 pthread_mutexattr_settype
65 pthread_mutexattr_getprioceiling
66 pthread_mutexattr_getprotocol
67 pthread_mutexattr_setprioceiling
68 pthread_mutexattr_setprotocol
69
70 ;sched
71 sched_yield
72
73 ;signal
74 pthread_kill
75 raise
76
77 ;stdio
78 printf
79 gets
80
81 ;stdlib
82 abort
83 malloc
84 realloc
85 free
86 calloc
87 exit
88
89 ;string
90 ;forward-exports to NTDLL
91 memchr
92 memcmp
93 memcpy
94 memmove
95 memset
96 strcat
97 strchr
98 strcmp
99 strcpy
100 strcspn
101 strlen
102 strncat
103 strncmp
104 strncpy
105 strpbrk
106 strrchr
107 strspn
108 strstr
109 ;implemented internally
110 strdup
111
112 ;sys/utsname
113 uname
114
115 ;unistd
116 close
117 dup
118 dup2
119 getcwd
120 getpid
121 getppid
122
123 ;wchar
124 ;forward-exports to NTDLL
125 wcscat
126 wcschr
127 wcscmp
128 wcscpy
129 wcscspn
130 wcslen
131 wcsncat
132 wcsncmp
133 wcsncpy
134 wcspbrk
135 wcsrchr
136 wcsspn
137 wcsstr
138 wcstol
139 wcstombs
140 wcstoul
141 ;implemented internally
142
143 ;EOF