Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}().
[wine] / dlls / gdi / mfdrv / mapping.c
1 /*
2  * Metafile GDI mapping mode functions
3  *
4  * Copyright 1996 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "gdi.h"
22 #include "gdi_private.h"
23 #include "mfdrv/metafiledrv.h"
24
25
26 /***********************************************************************
27  *           MFDRV_SetMapMode
28  */
29 INT MFDRV_SetMapMode( PHYSDEV dev, INT mode )
30 {
31     if(!MFDRV_MetaParam1( dev, META_SETMAPMODE, mode ))
32         return FALSE;
33     return GDI_NO_MORE_WORK;
34 }
35
36
37 /***********************************************************************
38  *           MFDRV_SetViewportExt
39  */
40 INT MFDRV_SetViewportExt( PHYSDEV dev, INT x, INT y )
41 {
42     if(!MFDRV_MetaParam2( dev, META_SETVIEWPORTEXT, x, y ))
43         return FALSE;
44     return GDI_NO_MORE_WORK;
45 }
46
47
48 /***********************************************************************
49  *           MFDRV_SetViewportOrg
50  */
51 INT MFDRV_SetViewportOrg( PHYSDEV dev, INT x, INT y )
52 {
53     if(!MFDRV_MetaParam2( dev, META_SETVIEWPORTORG, x, y ))
54         return FALSE;
55     return GDI_NO_MORE_WORK;
56 }
57
58
59 /***********************************************************************
60  *           MFDRV_SetWindowExt
61  */
62 INT MFDRV_SetWindowExt( PHYSDEV dev, INT x, INT y )
63 {
64     if(!MFDRV_MetaParam2( dev, META_SETWINDOWEXT, x, y ))
65         return FALSE;
66     return GDI_NO_MORE_WORK;
67 }
68
69
70 /***********************************************************************
71  *           MFDRV_SetWindowOrg
72  */
73 INT MFDRV_SetWindowOrg( PHYSDEV dev, INT x, INT y )
74 {
75     if(!MFDRV_MetaParam2( dev, META_SETWINDOWORG, x, y ))
76         return FALSE;
77     return GDI_NO_MORE_WORK;
78 }
79
80
81 /***********************************************************************
82  *           MFDRV_OffsetViewportOrg
83  */
84 INT MFDRV_OffsetViewportOrg( PHYSDEV dev, INT x, INT y )
85 {
86     if(!MFDRV_MetaParam2( dev, META_OFFSETVIEWPORTORG, x, y ))
87         return FALSE;
88     return GDI_NO_MORE_WORK;
89 }
90
91
92 /***********************************************************************
93  *           MFDRV_OffsetWindowOrg
94  */
95 INT MFDRV_OffsetWindowOrg( PHYSDEV dev, INT x, INT y )
96 {
97     if(!MFDRV_MetaParam2( dev, META_OFFSETWINDOWORG, x, y ))
98         return FALSE;
99     return GDI_NO_MORE_WORK;
100 }
101
102
103 /***********************************************************************
104  *           MFDRV_ScaleViewportExt
105  */
106 INT MFDRV_ScaleViewportExt( PHYSDEV dev, INT xNum, INT xDenom, INT yNum, INT yDenom )
107 {
108     if(!MFDRV_MetaParam4( dev, META_SCALEVIEWPORTEXT, xNum, xDenom, yNum, yDenom ))
109         return FALSE;
110     return GDI_NO_MORE_WORK;
111 }
112
113
114 /***********************************************************************
115  *           MFDRV_ScaleWindowExt
116  */
117 INT MFDRV_ScaleWindowExt( PHYSDEV dev, INT xNum, INT xDenom, INT yNum, INT yDenom )
118 {
119     if(!MFDRV_MetaParam4( dev, META_SCALEWINDOWEXT, xNum, xDenom, yNum, yDenom ))
120         return FALSE;
121     return GDI_NO_MORE_WORK;
122 }