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
ea881d25
Commit
ea881d25
authored
Jan 18, 2002
by
Uwe Bonnes
Committed by
Alexandre Julliard
Jan 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added GradientFill stub.
parent
4163e085
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
msimg32.spec
dlls/msimg32/msimg32.spec
+2
-2
msimg32_main.c
dlls/msimg32/msimg32_main.c
+13
-1
No files found.
dlls/msimg32/msimg32.spec
View file @
ea881d25
...
...
@@ -3,10 +3,10 @@ type win32
import ntdll.dll
debug_channels
(
)
debug_channels
(msimg32
)
@ stub AlphaBlend
@ stub DllInitialize
@ st
ub
GradientFill
@ st
dcall GradientFill (long ptr long ptr long long )
GradientFill
@ stub TransparentBlt
@ stub vSetDdrawflag
dlls/msimg32/msimg32_main.c
View file @
ea881d25
/* nothing here yet */
#include "winbase.h"
#include "winerror.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
msimg32
);
BOOL
WINAPI
GradientFill
(
HDC
hdc
,
void
*
vert_array
,
ULONG
nvert
,
void
*
grad_array
,
ULONG
ngrad
,
ULONG
mode
)
{
FIXME
(
"stub: %ld vertices %ld gradients mode %lx
\n
"
,
nvert
,
ngrad
,
mode
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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