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
f9fe3293
Commit
f9fe3293
authored
Apr 27, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
Apr 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Stub out buffered painting functions.
parent
f09288cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
0 deletions
+61
-0
buffer.c
dlls/uxtheme/buffer.c
+55
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+6
-0
No files found.
dlls/uxtheme/buffer.c
View file @
f9fe3293
...
...
@@ -81,3 +81,58 @@ HRESULT WINAPI EndBufferedPaint(HPAINTBUFFER hPaintBuffer, BOOL fUpdateTarget)
FIXME
(
"Stub (%p %d)
\n
"
,
hPaintBuffer
,
fUpdateTarget
);
return
S_OK
;
}
/***********************************************************************
* BufferedPaintClear (UXTHEME.@)
*/
HRESULT
WINAPI
BufferedPaintClear
(
HPAINTBUFFER
hBufferedPaint
,
const
RECT
*
prc
)
{
FIXME
(
"Stub (%p %p)
\n
"
,
hBufferedPaint
,
prc
);
return
E_NOTIMPL
;
}
/***********************************************************************
* BufferedPaintSetAlpha (UXTHEME.@)
*/
HRESULT
WINAPI
BufferedPaintSetAlpha
(
HPAINTBUFFER
hBufferedPaint
,
const
RECT
*
prc
,
BYTE
alpha
)
{
FIXME
(
"Stub (%p %p %u)
\n
"
,
hBufferedPaint
,
prc
,
alpha
);
return
E_NOTIMPL
;
}
/***********************************************************************
* GetBufferedPaintBits (UXTHEME.@)
*/
HRESULT
WINAPI
GetBufferedPaintBits
(
HPAINTBUFFER
hBufferedPaint
,
RGBQUAD
**
ppbBuffer
,
int
*
pcxRow
)
{
FIXME
(
"Stub (%p %p %p)
\n
"
,
hBufferedPaint
,
ppbBuffer
,
pcxRow
);
return
E_NOTIMPL
;
}
/***********************************************************************
* GetBufferedPaintDC (UXTHEME.@)
*/
HDC
WINAPI
GetBufferedPaintDC
(
HPAINTBUFFER
hBufferedPaint
)
{
FIXME
(
"Stub (%p)
\n
"
,
hBufferedPaint
);
return
NULL
;
}
/***********************************************************************
* GetBufferedPaintTargetDC (UXTHEME.@)
*/
HDC
WINAPI
GetBufferedPaintTargetDC
(
HPAINTBUFFER
hBufferedPaint
)
{
FIXME
(
"Stub (%p)
\n
"
,
hBufferedPaint
);
return
NULL
;
}
/***********************************************************************
* GetBufferedPaintTargetRect (UXTHEME.@)
*/
HRESULT
WINAPI
GetBufferedPaintTargetRect
(
HPAINTBUFFER
hBufferedPaint
,
RECT
*
prc
)
{
FIXME
(
"Stub (%p %p)
\n
"
,
hBufferedPaint
,
prc
);
return
E_NOTIMPL
;
}
dlls/uxtheme/uxtheme.spec
View file @
f9fe3293
...
...
@@ -44,7 +44,9 @@
# Standard functions
@ stdcall BeginBufferedPaint(ptr ptr long ptr ptr)
@ stdcall BufferedPaintClear(ptr ptr)
@ stdcall BufferedPaintInit()
@ stdcall BufferedPaintSetAlpha(ptr ptr long)
@ stdcall BufferedPaintUnInit()
@ stdcall CloseThemeData(ptr)
@ stdcall DrawThemeBackground(ptr ptr long long ptr ptr)
...
...
@@ -56,6 +58,10 @@
@ stdcall EnableThemeDialogTexture(ptr long)
@ stdcall EnableTheming(long)
@ stdcall EndBufferedPaint(ptr long)
@ stdcall GetBufferedPaintBits(ptr ptr ptr)
@ stdcall GetBufferedPaintDC(ptr)
@ stdcall GetBufferedPaintTargetDC(ptr)
@ stdcall GetBufferedPaintTargetRect(ptr ptr)
@ stdcall GetCurrentThemeName(wstr long wstr long wstr long)
@ stdcall GetThemeAppProperties()
@ stdcall GetThemeBackgroundContentRect(ptr ptr long long ptr ptr)
...
...
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