move dummy api / old api, that does not do anything to historic.c, they are left...
[reactos.git] / reactos / dll / win32 / gdi32 / misc / historic.c
1 /* $Id: stubs.c 28709 2007-08-31 15:09:51Z greatlrd $
2 *
3 * reactos/lib/gdi32/misc/historic.c
4 *
5 * GDI32.DLL Stubs
6 *
7 * Api that does basic nothing, but is here for backwords compatible with older windows
8 *
9 */
10
11 #include "precomp.h"
12
13 /*
14 * @implemented
15 */
16 BOOL
17 STDCALL
18 GdiPlayDCScript(DWORD a0,
19 DWORD a1,
20 DWORD a2,
21 DWORD a3,
22 DWORD a4,
23 DWORD a5)
24 {
25 /* FIXME fix the prototype right */
26 return FALSE;
27 }
28
29 /*
30 * @implemented
31 */
32 BOOL
33 STDCALL
34 GdiPlayJournal(DWORD a0,
35 DWORD a1,
36 DWORD a2,
37 DWORD a3,
38 DWORD a4)
39 {
40 /* FIXME fix the prototype right */
41 return FALSE;
42 }
43
44 /*
45 * @implemented
46 */
47 BOOL
48 STDCALL
49 GdiPlayScript(DWORD a0,
50 DWORD a1,
51 DWORD a2,
52 DWORD a3,
53 DWORD a4,
54 DWORD a5,
55 DWORD a6)
56 {
57 /* FIXME fix the prototype right */
58 return FALSE;
59 }
60
61 /*
62 * @implemented
63 */
64 HBITMAP
65 STDCALL
66 GdiConvertBitmap(HBITMAP hbm)
67 {
68 return hbm;
69 }
70
71 /*
72 * @implemented
73 */
74 HBRUSH
75 STDCALL
76 GdiConvertBrush(HBRUSH hbr)
77 {
78 return hbr;
79 }
80
81 /*
82 * @implemented
83 */
84 HDC
85 STDCALL
86 GdiConvertDC(HDC hdc)
87 {
88 return hdc;
89 }
90
91 /*
92 * @implemented
93 */
94 HFONT
95 STDCALL
96 GdiConvertFont(HFONT hfont)
97 {
98 return hfont;
99 }
100
101 /*
102 * @implemented
103 */
104 HPALETTE
105 STDCALL
106 GdiConvertPalette(HPALETTE hpal)
107 {
108 return hpal;
109 }
110
111 /*
112 * @implemented
113 */
114 HRGN
115 STDCALL
116 GdiConvertRegion(HRGN hregion)
117 {
118 return hregion;
119 }
120
121 /*
122 * @implemented
123 */
124 BOOL
125 STDCALL
126 GdiSetAttrs(HDC hdc)
127 {
128 return TRUE;
129 }
130
131 /*
132 * @implemented
133 */
134 VOID
135 STDCALL
136 GdiSetServerAttr(HDC hdc,DWORD attr)
137 {
138 /* it does do nothing */
139 }
140
141
142
143