Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
5f66cf3a
Commit
5f66cf3a
authored
22 years ago
by
Liu Spider
Committed by
Alexandre Julliard
22 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Implemented GetFileTitleW; GetFileTitleA now is a call to
GetFileTitleW.
parent
aa3ba0b5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/commdlg/filetitle.c
+29
-31
29 additions, 31 deletions
dlls/commdlg/filetitle.c
with
29 additions
and
31 deletions
dlls/commdlg/filetitle.c
+
29
−
31
View file @
5f66cf3a
...
...
@@ -23,34 +23,53 @@
#include
"winbase.h"
#include
"winnls.h"
#include
"winternl.h"
#include
"commdlg.h"
#include
"cdlg.h"
#include
"wine/unicode.h"
#include
"wine/debug.h"
#include
"heap.h"
/* Has to go */
WINE_DEFAULT_DEBUG_CHANNEL
(
commdlg
);
#include
"cdlg.h"
/***********************************************************************
* GetFileTitleA (COMDLG32.@)
*
*/
short
WINAPI
GetFileTitleA
(
LPCSTR
lpFile
,
LPSTR
lpTitle
,
UINT
cbBuf
)
{
int
i
,
len
;
int
ret
;
UNICODE_STRING
strWFile
;
LPWSTR
lpWTitle
;
RtlCreateUnicodeStringFromAsciiz
(
&
strWFile
,
lpFile
);
lpWTitle
=
RtlAllocateHeap
(
GetProcessHeap
(),
0
,
cbBuf
*
sizeof
(
WCHAR
));
ret
=
GetFileTitleW
(
strWFile
.
Buffer
,
lpWTitle
,
cbBuf
);
if
(
!
ret
)
WideCharToMultiByte
(
CP_ACP
,
0
,
lpWTitle
,
-
1
,
lpTitle
,
cbBuf
,
NULL
,
NULL
);
RtlFreeUnicodeString
(
&
strWFile
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
lpWTitle
);
return
ret
;
}
/***********************************************************************
* GetFileTitleW (COMDLG32.@)
*
*/
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
UINT
cbBuf
)
{
int
i
,
len
;
static
const
WCHAR
brkpoint
[]
=
{
'*'
,
'['
,
']'
};
TRACE
(
"(%p %p %d);
\n
"
,
lpFile
,
lpTitle
,
cbBuf
);
if
(
lpFile
==
NULL
||
lpTitle
==
NULL
)
return
-
1
;
len
=
strlen
(
lpFile
);
len
=
strlen
W
(
lpFile
);
if
(
len
==
0
)
return
-
1
;
if
(
strpbrk
(
lpFile
,
"*[]"
))
if
(
strpbrk
W
(
lpFile
,
brkpoint
))
return
-
1
;
len
--
;
...
...
@@ -70,37 +89,17 @@ short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, UINT cbBuf)
if
(
i
==
-
1
)
i
++
;
TRACE
(
"---> '%s'
\n
"
,
&
lpFile
[
i
]);
TRACE
(
"---> '%s'
\n
"
,
debugstr_w
(
&
lpFile
[
i
])
)
;
len
=
strlen
(
lpFile
+
i
)
+
1
;
len
=
strlen
W
(
lpFile
+
i
)
+
1
;
if
(
cbBuf
<
len
)
return
len
;
str
n
cpy
(
lpTitle
,
&
lpFile
[
i
]
,
len
);
strcpy
W
(
lpTitle
,
&
lpFile
[
i
]);
return
0
;
}
/***********************************************************************
* GetFileTitleW (COMDLG32.@)
*
*/
short
WINAPI
GetFileTitleW
(
LPCWSTR
lpFile
,
LPWSTR
lpTitle
,
UINT
cbBuf
)
{
LPSTR
file
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
lpFile
);
/* Has to go */
LPSTR
title
=
HeapAlloc
(
GetProcessHeap
(),
0
,
cbBuf
);
short
ret
;
ret
=
GetFileTitleA
(
file
,
title
,
cbBuf
);
if
(
cbBuf
>
0
&&
!
MultiByteToWideChar
(
CP_ACP
,
0
,
title
,
-
1
,
lpTitle
,
cbBuf
))
lpTitle
[
cbBuf
-
1
]
=
0
;
HeapFree
(
GetProcessHeap
(),
0
,
file
);
HeapFree
(
GetProcessHeap
(),
0
,
title
);
return
ret
;
}
/***********************************************************************
* GetFileTitle (COMMDLG.27)
*/
...
...
@@ -108,4 +107,3 @@ short WINAPI GetFileTitle16(LPCSTR lpFile, LPSTR lpTitle, UINT16 cbBuf)
{
return
GetFileTitleA
(
lpFile
,
lpTitle
,
cbBuf
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment