Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
095c1f32
Commit
095c1f32
authored
May 28, 2022
by
Roman Pišl
Committed by
Alexandre Julliard
May 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Add lineGetIconW stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53061
Signed-off-by:
Roman Pišl
<
rpisl@seznam.cz
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1e1f034
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
line.c
dlls/tapi32/line.c
+9
-0
tapi32.spec
dlls/tapi32/tapi32.spec
+1
-0
No files found.
dlls/tapi32/line.c
View file @
095c1f32
...
...
@@ -698,6 +698,15 @@ DWORD WINAPI lineGetIconA(DWORD dwDeviceID, LPCSTR lpszDeviceClass, HICON *lphIc
}
/***********************************************************************
* lineGetIconW (TAPI32.@)
*/
DWORD
WINAPI
lineGetIconW
(
DWORD
dwDeviceID
,
LPCWSTR
lpszDeviceClass
,
HICON
*
lphIcon
)
{
FIXME
(
"(%08lx, %s, %p): stub.
\n
"
,
dwDeviceID
,
debugstr_w
(
lpszDeviceClass
),
lphIcon
);
return
0
;
}
/***********************************************************************
* lineGetLineDevStatus (TAPI32.@)
*/
DWORD
WINAPI
lineGetLineDevStatusA
(
HLINE
hLine
,
LPLINEDEVSTATUS
lpLineDevStatus
)
...
...
dlls/tapi32/tapi32.spec
View file @
095c1f32
...
...
@@ -56,6 +56,7 @@
@ stdcall lineGetIDW(long long long long ptr wstr)
@ stdcall lineGetIcon(long str ptr) lineGetIconA
@ stdcall lineGetIconA(long str ptr)
@ stdcall lineGetIconW(long wstr ptr)
@ stdcall lineGetLineDevStatus(long ptr) lineGetLineDevStatusA
@ stdcall lineGetLineDevStatusA(long ptr)
@ stdcall lineGetMessage(long ptr long)
...
...
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