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
461bfc64
Commit
461bfc64
authored
Sep 13, 2016
by
Sebastian Lackner
Committed by
Alexandre Julliard
Sep 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Return E_NOTIMPL in HRESULT stub functions.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0198d0d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
draw.c
dlls/uxtheme/draw.c
+1
-1
system.c
dlls/uxtheme/system.c
+2
-2
No files found.
dlls/uxtheme/draw.c
View file @
461bfc64
...
...
@@ -1626,7 +1626,7 @@ HRESULT WINAPI DrawThemeIcon(HTHEME hTheme, HDC hdc, int iPartId, int iStateId,
FIXME
(
"%d %d: stub
\n
"
,
iPartId
,
iStateId
);
if
(
!
hTheme
)
return
E_HANDLE
;
return
E
RROR_CALL_NOT_IMPLEMENTED
;
return
E
_NOTIMPL
;
}
/***********************************************************************
...
...
dlls/uxtheme/system.c
View file @
461bfc64
...
...
@@ -762,7 +762,7 @@ HRESULT WINAPI HitTestThemeBackground(HTHEME hTheme, HDC hdc, int iPartId,
FIXME
(
"%d %d 0x%08x: stub
\n
"
,
iPartId
,
iStateId
,
dwOptions
);
if
(
!
hTheme
)
return
E_HANDLE
;
return
E
RROR_CALL_NOT_IMPLEMENTED
;
return
E
_NOTIMPL
;
}
/***********************************************************************
...
...
@@ -1188,7 +1188,7 @@ HRESULT WINAPI ParseThemeIniFile(LPCWSTR pszIniFileName, LPWSTR pszUnknown,
ParseThemeIniFileProc
callback
,
LPVOID
lpData
)
{
FIXME
(
"%s %s: stub
\n
"
,
debugstr_w
(
pszIniFileName
),
debugstr_w
(
pszUnknown
));
return
E
RROR_CALL_NOT_IMPLEMENTED
;
return
E
_NOTIMPL
;
}
/**********************************************************************
...
...
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