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
c8a3f7ac
Commit
c8a3f7ac
authored
Oct 23, 1999
by
Ulrich Czekalla
Committed by
Alexandre Julliard
Oct 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented StrRChrA.
parent
3723c2c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
shellord.c
dlls/shell32/shellord.c
+22
-0
shlwapi.spec
dlls/shell32/shlwapi.spec
+1
-1
No files found.
dlls/shell32/shellord.c
View file @
c8a3f7ac
...
...
@@ -1228,6 +1228,28 @@ HRESULT WINAPI SHFlushClipboard(void)
return
1
;
}
/*************************************************************************
* StrRChrA [SHELL32.346]
*
*/
LPSTR
WINAPI
StrRChrA
(
LPCSTR
lpStart
,
LPCSTR
lpEnd
,
DWORD
wMatch
)
{
if
(
!
lpStart
)
return
NULL
;
/* if the end not given, search*/
if
(
!
lpEnd
)
{
lpEnd
=
lpStart
;
while
(
*
lpEnd
)
lpEnd
++
;
}
for
(
--
lpEnd
;
lpStart
<=
lpEnd
;
lpEnd
--
)
if
(
*
lpEnd
==
(
char
)
wMatch
)
return
(
LPSTR
)
lpEnd
;
return
NULL
;
}
/*************************************************************************
* StrRChrW [SHELL32.320]
*
*/
...
...
dlls/shell32/shlwapi.spec
View file @
c8a3f7ac
...
...
@@ -346,7 +346,7 @@ type win32
343 stub StrNCatW
344 stub StrPBrkA
345 stub StrPBrkW
346 st
ub
StrRChrA
346 st
dcall StrRChrA (str str long)
StrRChrA
347 stub StrRChrIA
348 stub StrRChrIW
349 stdcall StrRChrW (wstr wstr long) StrRChrW
...
...
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