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
d0c87253
Commit
d0c87253
authored
Jul 23, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed broken forwards reported by Patrik Stridvall.
parent
029b9483
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
43 deletions
+99
-43
crtdll.spec
dlls/crtdll/crtdll.spec
+6
-6
crtdll_main.c
dlls/crtdll/crtdll_main.c
+56
-0
msvcrt20.spec
dlls/msvcrt20/msvcrt20.spec
+36
-36
shell32.spec
dlls/shell32/shell32.spec
+1
-1
No files found.
dlls/crtdll/crtdll.spec
View file @
d0c87253
...
...
@@ -282,21 +282,21 @@ init CRTDLL_Init
@ forward _statusfp msvcrt._statusfp
@ forward _strcmpi msvcrt._strcmpi
@ forward _strdate msvcrt._strdate
@
forward _strdec msvcrt.
_strdec
@
cdecl _strdec(str str)
_strdec
@ forward _strdup msvcrt._strdup
@ forward _strerror msvcrt._strerror
@ forward _stricmp msvcrt._stricmp
@ forward _stricoll msvcrt._stricoll
@
forward _strinc msvcrt.
_strinc
@
cdecl _strinc(str)
_strinc
@ forward _strlwr msvcrt._strlwr
@
forward _strncnt msvcrt.
_strncnt
@
forward _strnextc msvcrt.
_strnextc
@
cdecl _strncnt(str long)
_strncnt
@
cdecl _strnextc(str)
_strnextc
@ forward _strnicmp msvcrt._strnicmp
@
forward _strninc msvcrt.
_strninc
@
cdecl _strninc(str long)
_strninc
@ forward _strnset msvcrt._strnset
@ forward _strrev msvcrt._strrev
@ forward _strset msvcrt._strset
@
forward _strspnp msvcrt.
_strspnp
@
cdecl _strspnp(str str)
_strspnp
@ forward _strtime msvcrt._strtime
@ forward _strupr msvcrt._strupr
@ forward _swab msvcrt._swab
...
...
dlls/crtdll/crtdll_main.c
View file @
d0c87253
...
...
@@ -133,3 +133,59 @@ int CRTDLL__stat(const char* path, struct crtdll_stat * buf)
if
(
!
(
ret
=
_stat
(
path
,
&
st
)))
convert_struct_stat
(
buf
,
&
st
);
return
ret
;
}
/*********************************************************************
* _strdec (CRTDLL.@)
*/
char
*
_strdec
(
const
char
*
str1
,
const
char
*
str2
)
{
return
(
char
*
)(
str2
-
1
);
}
/*********************************************************************
* _strinc (CRTDLL.@)
*/
char
*
_strinc
(
const
char
*
str
)
{
return
(
char
*
)(
str
+
1
);
}
/*********************************************************************
* _strncnt (CRTDLL.@)
*/
size_t
_strncnt
(
const
char
*
str
,
size_t
maxlen
)
{
size_t
len
=
strlen
(
str
);
return
(
len
>
maxlen
)
?
maxlen
:
len
;
}
/*********************************************************************
* _strnextc (CRTDLL.@)
*/
unsigned
int
_strnextc
(
const
char
*
str
)
{
return
(
unsigned
int
)
str
[
0
];
}
/*********************************************************************
* _strninc (CRTDLL.@)
*/
char
*
_strninc
(
const
char
*
str
,
size_t
len
)
{
return
(
char
*
)(
str
+
len
);
}
/*********************************************************************
* _strspnp (CRTDLL.@)
*/
char
*
_strspnp
(
const
char
*
str1
,
const
char
*
str2
)
{
str1
+=
strspn
(
str1
,
str2
);
return
*
str1
?
(
char
*
)
str1
:
NULL
;
}
dlls/msvcrt20/msvcrt20.spec
View file @
d0c87253
...
...
@@ -735,8 +735,8 @@
@ forward -noimport _mkdir msvcrt._mkdir
@ forward -noimport _mktemp msvcrt._mktemp
@ forward -noimport _msize msvcrt._msize
@
forward -noimport _mtlock msvcrt.
_mtlock
@
forward -noimport _mtunlock msvcrt.
_mtunlock
@
stub
_mtlock
@
stub
_mtunlock
@ forward -noimport _nextafter msvcrt._nextafter
@ forward -noimport _onexit msvcrt._onexit
@ forward -noimport _open msvcrt._open
...
...
@@ -764,7 +764,7 @@
@ forward -noimport _safe_fprem1 msvcrt._safe_fprem1
@ forward -noimport _scalb msvcrt._scalb
@ forward -noimport _searchenv msvcrt._searchenv
@ forward -noimport __seh_longjmp_unwind
@4 msvcrt._
_seh_longjmp_unwind
@ forward -noimport __seh_longjmp_unwind
msvcrt.
_seh_longjmp_unwind
@ forward -noimport _seterrormode msvcrt._seterrormode
@ forward -noimport _setjmp msvcrt._setjmp
@ forward -noimport _setjmp3 msvcrt._setjmp3
...
...
@@ -804,39 +804,39 @@
@ forward -noimport _swab msvcrt._swab
@ forward -noimport _sys_errlist msvcrt._sys_errlist
@ forward -noimport _sys_nerr msvcrt._sys_nerr
@ forward -noimport _tccpy msvcrt._
t
ccpy
@ forward -noimport _tclen msvcrt._
t
clen
@ forward -noimport _tcschr msvcrt._
tc
schr
@ forward -noimport _tcsclen msvcrt._
tcsc
len
@ forward -noimport _tcscmp msvcrt._
tc
scmp
@ forward -noimport _tcscspn msvcrt._
tc
scspn
@ forward -noimport _tcsdec msvcrt._
tc
sdec
@ forward -noimport _tcsicmp msvcrt._
tc
sicmp
@ forward -noimport _tcsinc msvcrt._
tc
sinc
@ forward -noimport _tcslwr msvcrt._
tc
slwr
@ forward -noimport _tcsnbcnt msvcrt._
tc
snbcnt
@ forward -noimport _tcsncat msvcrt._
tcsn
cat
@ forward -noimport _tcsnccat msvcrt._
tcsnc
cat
@ forward -noimport _tcsnccmp msvcrt._
tcsnc
cmp
@ forward -noimport _tcsnccnt msvcrt._
tc
snccnt
@ forward -noimport _tcsnccpy msvcrt._
tcsnc
cpy
@ forward -noimport _tcsncicmp msvcrt._
tcsnc
icmp
@ forward -noimport _tcsncmp msvcrt._
tcsn
cmp
@ forward -noimport _tcsncpy msvcrt._
tcsn
cpy
@ forward -noimport _tcsncset msvcrt._
tcsnc
set
@ forward -noimport _tcsnextc msvcrt._
tc
snextc
@ forward -noimport _tcsnicmp msvcrt._
tcsn
icmp
@ forward -noimport _tcsninc msvcrt._
tc
sninc
@ forward -noimport _tcsnset msvcrt._
tcsn
set
@ forward -noimport _tcspbrk msvcrt._
tc
spbrk
@ forward -noimport _tcsrchr msvcrt._
tc
srchr
@ forward -noimport _tcsrev msvcrt._
tc
srev
@ forward -noimport _tcsset msvcrt._
tc
sset
@ forward -noimport _tcsspn msvcrt._
tc
sspn
@ forward -noimport _tcsspnp msvcrt._
tc
sspnp
@ forward -noimport _tcsstr msvcrt._
tc
sstr
@ forward -noimport _tcstok msvcrt._
tc
stok
@ forward -noimport _tcsupr msvcrt._
tc
supr
@ forward -noimport _tccpy msvcrt._
mb
ccpy
@ forward -noimport _tclen msvcrt._
mb
clen
@ forward -noimport _tcschr msvcrt._
mb
schr
@ forward -noimport _tcsclen msvcrt._
mbs
len
@ forward -noimport _tcscmp msvcrt._
mb
scmp
@ forward -noimport _tcscspn msvcrt._
mb
scspn
@ forward -noimport _tcsdec msvcrt._
mb
sdec
@ forward -noimport _tcsicmp msvcrt._
mb
sicmp
@ forward -noimport _tcsinc msvcrt._
mb
sinc
@ forward -noimport _tcslwr msvcrt._
mb
slwr
@ forward -noimport _tcsnbcnt msvcrt._
mb
snbcnt
@ forward -noimport _tcsncat msvcrt._
mbsnb
cat
@ forward -noimport _tcsnccat msvcrt._
mbsn
cat
@ forward -noimport _tcsnccmp msvcrt._
mbsn
cmp
@ forward -noimport _tcsnccnt msvcrt._
mb
snccnt
@ forward -noimport _tcsnccpy msvcrt._
mbsn
cpy
@ forward -noimport _tcsncicmp msvcrt._
mbsn
icmp
@ forward -noimport _tcsncmp msvcrt._
mbsnb
cmp
@ forward -noimport _tcsncpy msvcrt._
mbsnb
cpy
@ forward -noimport _tcsncset msvcrt._
mbsn
set
@ forward -noimport _tcsnextc msvcrt._
mb
snextc
@ forward -noimport _tcsnicmp msvcrt._
mbsnb
icmp
@ forward -noimport _tcsninc msvcrt._
mb
sninc
@ forward -noimport _tcsnset msvcrt._
mbsnb
set
@ forward -noimport _tcspbrk msvcrt._
mb
spbrk
@ forward -noimport _tcsrchr msvcrt._
mb
srchr
@ forward -noimport _tcsrev msvcrt._
mb
srev
@ forward -noimport _tcsset msvcrt._
mb
sset
@ forward -noimport _tcsspn msvcrt._
mb
sspn
@ forward -noimport _tcsspnp msvcrt._
mb
sspnp
@ forward -noimport _tcsstr msvcrt._
mb
sstr
@ forward -noimport _tcstok msvcrt._
mb
stok
@ forward -noimport _tcsupr msvcrt._
mb
supr
@ forward -noimport _tell msvcrt._tell
@ forward -noimport _tempnam msvcrt._tempnam
@ forward -noimport _timezone msvcrt._timezone
...
...
dlls/shell32/shell32.spec
View file @
d0c87253
...
...
@@ -247,7 +247,7 @@ init Shell32LibMain
313 forward StrNCmpIW shlwapi.StrCmpNIW
314 forward StrNCmpW shlwapi.StrCmpNW
315 stdcall StrNCpyA (ptr str long) lstrcpynA
316 forward StrNCpyW shlwapi.Str
NCpy
W
316 forward StrNCpyW shlwapi.Str
CpyN
W
317 forward StrRChrA shlwapi.StrRChrA
318 forward StrRChrIA shlwapi.StrRChrIA
319 forward StrRChrIW shlwapi.StrRChrIW
...
...
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