Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1852ce80
Commit
1852ce80
authored
Nov 25, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few forwards.
parent
07b1ac84
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
18 deletions
+45
-18
ole32.spec
dlls/ole32/ole32.spec
+2
-2
shell32.spec
dlls/shell32/shell32.spec
+12
-12
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+3
-3
string.c
dlls/shlwapi/string.c
+27
-0
w32skrnl.spec
dlls/win32s/w32skrnl.spec
+1
-1
No files found.
dlls/ole32/ole32.spec
View file @
1852ce80
...
...
@@ -20,9 +20,9 @@ debug_channels (ole relay storage)
6 stdcall CoCreateGuid(ptr) CoCreateGuid
7 stdcall CoCreateInstance(ptr ptr long ptr ptr) CoCreateInstance
8 stdcall CoDisconnectObject(ptr long) CoDisconnectObject
9
stdcall CoDosDateTimeToFileTime(long long ptr)
DosDateTimeToFileTime
9
forward CoDosDateTimeToFileTime kernel32.
DosDateTimeToFileTime
10 stdcall CoFileTimeNow(ptr) CoFileTimeNow
11
stdcall CoFileTimeToDosDateTime(ptr ptr ptr)
FileTimeToDosDateTime
11
forward CoFileTimeToDosDateTime kernel32.
FileTimeToDosDateTime
12 stdcall CoFreeAllLibraries() CoFreeAllLibraries
13 stdcall CoFreeLibrary(long) CoFreeLibrary
14 stdcall CoFreeUnusedLibraries() CoFreeUnusedLibraries
...
...
dlls/shell32/shell32.spec
View file @
1852ce80
...
...
@@ -249,28 +249,28 @@ debug_channels (exec pidl shell)
299 stub Shl1632_ThunkData32
300 stub Shl3216_ThunkData32
301 forward StrChrA shlwapi.StrChrA
302
stub
StrChrIA
303
stub
StrChrIW
302
forward StrChrIA shlwapi.
StrChrIA
303
forward StrChrIW shlwapi.
StrChrIW
304 forward StrChrW shlwapi.StrChrW
305 forward StrCmpNA shlwapi.StrCmpNA
306 forward StrCmpNIA shlwapi.StrCmpNIA
307 forward StrCmpNIW shlwapi.StrCmpNIW
308 forward StrCmpNW shlwapi.StrCmpNW
309 stdcall StrCpyNA (ptr str long) lstrcpynA
310
stdcall StrCpyNW (ptr wstr long)lstrcpyn
W
311
stub StrNCmp
A
312
stub StrNCmp
IA
313
stub StrNCmp
IW
314
stub StrNCmp
W
310
forward StrCpyNW shlwapi.StrCpyN
W
311
forward StrNCmpA shlwapi.StrCmpN
A
312
forward StrNCmpIA shlwapi.StrCmpN
IA
313
forward StrNCmpIW shlwapi.StrCmpN
IW
314
forward StrNCmpW shlwapi.StrCmpN
W
315 stdcall StrNCpyA (ptr str long) lstrcpynA
316
stdcall StrNCpyW (ptr wstr long)lstrcpyn
W
316
forward StrNCpyW shlwapi.StrNCpy
W
317 forward StrRChrA shlwapi.StrRChrA
318
stub
StrRChrIA
319
stub
StrRChrIW
318
forward StrRChrIA shlwapi.
StrRChrIA
319
forward StrRChrIW shlwapi.
StrRChrIW
320 forward StrRChrW shlwapi.StrRChrW
321 stub StrRStrA
322
stub
StrRStrIA
323
stub
StrRStrIW
322
forward StrRStrIA shlwapi.
StrRStrIA
323
forward StrRStrIW shlwapi.
StrRStrIW
324 stub StrRStrW
325 forward StrStrA shlwapi.StrStrA
326 forward StrStrIA shlwapi.StrStrIA
...
...
dlls/shlwapi/shlwapi.spec
View file @
1852ce80
...
...
@@ -623,13 +623,13 @@ debug_channels (shell)
@ stub StrChrIA
@ stub StrChrIW
@ stdcall StrChrW (wstr long) StrChrW
@
forward StrCmpIW kernel32.lstrcmpi
W
@
stdcall StrCmpIW (wstr wstr) StrCmpI
W
@ stdcall StrCmpNA (str str long) StrCmpNA
@ stdcall StrCmpNIA (str str long) StrCmpNIA
@ stdcall StrCmpNIW (wstr wstr long) StrCmpNIW
@ stdcall StrCmpNW (wstr wstr long) StrCmpNW
@
forward StrCmpW kernel32.lstrc
mpW
@ stdcall StrCpyNW (
ptr wstr long) lstrcpyn
W
@
stdcall StrCmpW (wstr wstr) StrC
mpW
@ stdcall StrCpyNW (
wstr wstr long) StrCpyN
W
@ stdcall StrCpyW (ptr wstr) StrCpyW
@ stdcall StrDupA (str) StrDupA
@ stdcall StrDupW (wstr) StrDupW
...
...
dlls/shlwapi/string.c
View file @
1852ce80
...
...
@@ -36,6 +36,15 @@ LPWSTR WINAPI StrChrW (LPCWSTR str, WCHAR x )
}
/*************************************************************************
* StrCmpIW [SHLWAPI]
*/
int
WINAPI
StrCmpIW
(
LPCWSTR
wstr1
,
LPCWSTR
wstr2
)
{
TRACE
(
"%s %s
\n
"
,
debugstr_w
(
wstr1
),
debugstr_w
(
wstr2
));
return
strcmpiW
(
wstr1
,
wstr2
);
}
/*************************************************************************
* StrCmpNA [SHLWAPI]
*/
INT
WINAPI
StrCmpNA
(
LPCSTR
str1
,
LPCSTR
str2
,
INT
len
)
...
...
@@ -72,6 +81,15 @@ int WINAPI StrCmpNIW ( LPCWSTR wstr1, LPCWSTR wstr2, int len)
}
/*************************************************************************
* StrCmpW [SHLWAPI]
*/
int
WINAPI
StrCmpW
(
LPCWSTR
wstr1
,
LPCWSTR
wstr2
)
{
TRACE
(
"%s %s
\n
"
,
debugstr_w
(
wstr1
),
debugstr_w
(
wstr2
));
return
strcmpW
(
wstr1
,
wstr2
);
}
/*************************************************************************
* StrCatW [SHLWAPI]
*/
LPWSTR
WINAPI
StrCatW
(
LPWSTR
wstr1
,
LPCWSTR
wstr2
)
...
...
@@ -90,6 +108,15 @@ LPWSTR WINAPI StrCpyW( LPWSTR wstr1, LPCWSTR wstr2 )
/*************************************************************************
* StrCpyNW [SHLWAPI]
*/
LPWSTR
WINAPI
StrCpyNW
(
LPWSTR
wstr1
,
LPCWSTR
wstr2
,
int
n
)
{
return
lstrcpynW
(
wstr1
,
wstr2
,
n
);
}
/*************************************************************************
* StrStrA [SHLWAPI]
*/
LPSTR
WINAPI
StrStrA
(
LPCSTR
lpFirst
,
LPCSTR
lpSrch
)
...
...
dlls/win32s/w32skrnl.spec
View file @
1852ce80
...
...
@@ -35,7 +35,7 @@ debug_channels (dll)
27 stub _NtDupSection@4
28 stub _GetSelModName@20
29 stub _FGetDscr@8
30
stdcall _RtlNtStatusToDosError@4(long)
RtlNtStatusToDosError #FIXME: not sure
30
forward _RtlNtStatusToDosError ntdll.
RtlNtStatusToDosError #FIXME: not sure
31 stub _NtFlushVirtualMemory@16
32 stub _snprintf
33 stub _NtUnmapViewOfSection@8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment