Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5bec0d7e
Commit
5bec0d7e
authored
Mar 12, 2004
by
Ge van Geldorp
Committed by
Alexandre Julliard
Mar 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change GetFileTitleA/W prototype to match PSDK.
parent
8a37297f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
filetitle.c
dlls/commdlg/filetitle.c
+2
-2
commdlg.h
include/commdlg.h
+2
-2
No files found.
dlls/commdlg/filetitle.c
View file @
5bec0d7e
...
...
@@ -40,7 +40,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
* GetFileTitleA (COMDLG32.@)
*
*/
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
UINT
cbBuf
)
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
WORD
cbBuf
)
{
int
ret
;
UNICODE_STRING
strWFile
;
...
...
@@ -60,7 +60,7 @@ short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, UINT cbBuf)
* GetFileTitleW (COMDLG32.@)
*
*/
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
UINT
cbBuf
)
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
WORD
cbBuf
)
{
int
i
,
len
;
static
const
WCHAR
brkpoint
[]
=
{
'*'
,
'['
,
']'
,
0
};
...
...
include/commdlg.h
View file @
5bec0d7e
...
...
@@ -670,8 +670,8 @@ DWORD WINAPI CommDlgExtendedError(void);
HWND
WINAPI
FindTextA
(
LPFINDREPLACEA
lpFind
);
HWND
WINAPI
FindTextW
(
LPFINDREPLACEW
lpFind
);
#define FindText WINELIB_NAME_AW(FindText)
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
UINT
cbBuf
);
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
UINT
cbBuf
);
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
WORD
cbBuf
);
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
WORD
cbBuf
);
#define GetFileTitle WINELIB_NAME_AW(GetFileTitle)
BOOL
WINAPI
GetOpenFileNameA
(
LPOPENFILENAMEA
ofn
);
BOOL
WINAPI
GetOpenFileNameW
(
LPOPENFILENAMEW
ofn
);
...
...
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