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
ca70e84f
Commit
ca70e84f
authored
Jan 02, 2003
by
Alberto Massari
Committed by
Alexandre Julliard
Jan 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved implementation of strpbrkW from filedlg95.c to wine/unicode.h.
parent
c019f535
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
14 deletions
+6
-14
filedlg95.c
dlls/commdlg/filedlg95.c
+0
-14
unicode.h
include/wine/unicode.h
+6
-0
No files found.
dlls/commdlg/filedlg95.c
View file @
ca70e84f
...
...
@@ -219,20 +219,6 @@ HRESULT FILEDLG95_HandleCustomDialogMessages(HWND hwnd, UINT uMsg, WPARAM wParam
BOOL
FILEDLG95_OnOpenMultipleFiles
(
HWND
hwnd
,
LPWSTR
lpstrFileList
,
UINT
nFileCount
,
UINT
sizeUsed
);
static
BOOL
BrowseSelectedFolder
(
HWND
hwnd
);
LPWSTR
strpbrkW
(
LPWSTR
str
,
LPCWSTR
clist
)
{
LPCWSTR
p
;
while
(
str
&&
*
str
)
{
for
(
p
=
clist
;
*
p
;
p
++
)
if
(
*
p
==
*
str
)
return
str
;
str
++
;
}
return
NULL
;
}
/***********************************************************************
* GetFileName95
*
...
...
include/wine/unicode.h
View file @
ca70e84f
...
...
@@ -236,6 +236,12 @@ static inline WCHAR *strrchrW( const WCHAR *str, WCHAR ch )
return
ret
;
}
static
inline
WCHAR
*
strpbrkW
(
const
WCHAR
*
str
,
const
WCHAR
*
accept
)
{
for
(
;
*
str
;
str
++
)
if
(
strchrW
(
accept
,
*
str
))
return
(
WCHAR
*
)
str
;
return
NULL
;
}
static
inline
WCHAR
*
strlwrW
(
WCHAR
*
str
)
{
WCHAR
*
ret
=
str
;
...
...
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