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
87e4dbfd
Commit
87e4dbfd
authored
Apr 30, 2001
by
Chris Morgan
Committed by
Alexandre Julliard
Apr 30, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement COMCTL32_StrToIntW() using NTDLL's _wtoi.
parent
ada73838
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
comctl32.spec
dlls/comctl32/comctl32.spec
+1
-1
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+11
-0
No files found.
dlls/comctl32/comctl32.spec
View file @
87e4dbfd
...
...
@@ -169,7 +169,7 @@ debug_channels (animate comboex commctrl datetime header hotkey imagelist ipaddr
362 stdcall StrStrW(wstr wstr) COMCTL32_StrStrW
363 stub StrStrIW
364 stdcall StrSpnW(wstr wstr) COMCTL32_StrSpnW
365 st
ub
StrToIntW
365 st
dcall StrToIntW(wstr) COMCTL32_
StrToIntW
366 stub StrChrIA
367 stub StrChrIW
368 stub StrRChrIA
...
...
dlls/comctl32/comctl32undoc.c
View file @
87e4dbfd
...
...
@@ -48,6 +48,7 @@ typedef struct _LOADDATA
typedef
HRESULT
CALLBACK
(
*
DPALOADPROC
)(
LPLOADDATA
,
IStream
*
,
LPARAM
);
INT
__cdecl
_wtoi
(
LPWSTR
string
);
/**************************************************************************
* DPA_LoadStream [COMCTL32.9]
...
...
@@ -2080,6 +2081,16 @@ COMCTL32_StrToIntA (LPSTR lpString)
return
atoi
(
lpString
);
}
/**************************************************************************
* StrToIntW [COMCTL32.365] Converts a wide char string to a signed integer.
*/
INT
WINAPI
COMCTL32_StrToIntW
(
LPWSTR
lpString
)
{
return
_wtoi
(
lpString
);
}
/**************************************************************************
* DPA_EnumCallback [COMCTL32.385]
...
...
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