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
4932f560
Commit
4932f560
authored
Mar 01, 2004
by
Martin Fuchs
Committed by
Alexandre Julliard
Mar 01, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct return type of SysStringLen() and SysStringByteLen().
parent
46fceb19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
oleaut.c
dlls/oleaut32/oleaut.c
+2
-2
oleauto.h
include/oleauto.h
+2
-2
No files found.
dlls/oleaut32/oleaut.c
View file @
4932f560
...
@@ -91,7 +91,7 @@ HMODULE OLEAUT32_hModule = NULL;
...
@@ -91,7 +91,7 @@ HMODULE OLEAUT32_hModule = NULL;
* calculated by lstrlenW(), since it returns the length that was used to
* calculated by lstrlenW(), since it returns the length that was used to
* allocate the string by SysAllocStringLen().
* allocate the string by SysAllocStringLen().
*/
*/
int
WINAPI
SysStringLen
(
BSTR
str
)
UINT
WINAPI
SysStringLen
(
BSTR
str
)
{
{
DWORD
*
bufferPointer
;
DWORD
*
bufferPointer
;
...
@@ -121,7 +121,7 @@ int WINAPI SysStringLen(BSTR str)
...
@@ -121,7 +121,7 @@ int WINAPI SysStringLen(BSTR str)
* NOTES
* NOTES
* See SysStringLen(), BSTR().
* See SysStringLen(), BSTR().
*/
*/
int
WINAPI
SysStringByteLen
(
BSTR
str
)
UINT
WINAPI
SysStringByteLen
(
BSTR
str
)
{
{
DWORD
*
bufferPointer
;
DWORD
*
bufferPointer
;
...
...
include/oleauto.h
View file @
4932f560
...
@@ -44,8 +44,8 @@ BSTR WINAPI SysAllocStringLen(const OLECHAR*,UINT);
...
@@ -44,8 +44,8 @@ BSTR WINAPI SysAllocStringLen(const OLECHAR*,UINT);
void
WINAPI
SysFreeString
(
BSTR
);
void
WINAPI
SysFreeString
(
BSTR
);
INT
WINAPI
SysReAllocString
(
LPBSTR
,
const
OLECHAR
*
);
INT
WINAPI
SysReAllocString
(
LPBSTR
,
const
OLECHAR
*
);
int
WINAPI
SysReAllocStringLen
(
BSTR
*
,
const
OLECHAR
*
,
UINT
);
int
WINAPI
SysReAllocStringLen
(
BSTR
*
,
const
OLECHAR
*
,
UINT
);
int
WINAPI
SysStringByteLen
(
BSTR
);
UINT
WINAPI
SysStringByteLen
(
BSTR
);
int
WINAPI
SysStringLen
(
BSTR
);
UINT
WINAPI
SysStringLen
(
BSTR
);
/* IErrorInfo helpers */
/* IErrorInfo helpers */
HRESULT
WINAPI
SetErrorInfo
(
ULONG
,
IErrorInfo
*
);
HRESULT
WINAPI
SetErrorInfo
(
ULONG
,
IErrorInfo
*
);
...
...
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