mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
resolve SysStringLen FIXME
svn path=/trunk/; revision=8500
This commit is contained in:
parent
7be7923e1a
commit
897ccf0b08
1 changed files with 2 additions and 4 deletions
|
@ -92,8 +92,7 @@ HMODULE OLEAUT32_hModule = NULL;
|
|||
* calculated by lstrlenW(), since it returns the length that was used to
|
||||
* allocate the string by SysAllocStringLen().
|
||||
*/
|
||||
unsigned/*FIXME: wrong return type of SysStringLen() in WINE header */
|
||||
int WINAPI SysStringLen(BSTR str)
|
||||
UINT WINAPI SysStringLen(BSTR str)
|
||||
{
|
||||
DWORD* bufferPointer;
|
||||
|
||||
|
@ -123,8 +122,7 @@ int WINAPI SysStringLen(BSTR str)
|
|||
* NOTES
|
||||
* See SysStringLen(), BSTR().
|
||||
*/
|
||||
unsigned/*FIXME: wrong return type of SysStringLen() in WINE header */
|
||||
int WINAPI SysStringByteLen(BSTR str)
|
||||
UINT WINAPI SysStringByteLen(BSTR str)
|
||||
{
|
||||
DWORD* bufferPointer;
|
||||
|
||||
|
|
Loading…
Reference in a new issue