1422e65d8704c9af3107f6f7ae56f83bee9ec41d
[reactos.git] / reactos / dll / win32 / gdiplus / gdiplus / effect.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 Status __stdcall
9 GdipCreateEffect(const GUID guid,
10 CGpEffect **effect)
11 {
12 return NotImplemented;
13 }
14
15 /*
16 * @unimplemented
17 */
18 Status __stdcall
19 GdipDeleteEffect(CGpEffect *effect)
20 {
21 return NotImplemented;
22 }
23
24 /*
25 * @unimplemented
26 */
27 Status __stdcall
28 GdipGetEffectParameterSize(CGpEffect *effect,
29 UINT *size)
30 {
31 return NotImplemented;
32 }
33
34 /*
35 * @unimplemented
36 */
37 Status __stdcall
38 GdipSetEffectParameters(CGpEffect *effect,
39 const VOID *params,
40 const UINT size)
41 {
42 return NotImplemented;
43 }
44
45 /*
46 * @unimplemented
47 */
48 Status __stdcall
49 GdipGetEffectParameters(CGpEffect *effect,
50 UINT *size,
51 VOID *params)
52 {
53 return NotImplemented;
54 }