gdi32: Constify some variables.

This commit is contained in:
Andrew Talbot 2007-04-29 13:17:26 +01:00 committed by Alexandre Julliard
parent 6b7c482cb6
commit 7bdba1b63a
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ static const struct gdi_obj_funcs brush_funcs =
BRUSH_DeleteObject /* pDeleteObject */
};
static HGLOBAL16 dib_copy(BITMAPINFO *info, UINT coloruse)
static HGLOBAL16 dib_copy(const BITMAPINFO *info, UINT coloruse)
{
BITMAPINFO *newInfo;
HGLOBAL16 hmem;

View File

@ -516,7 +516,7 @@ typedef struct enum_emh_data
#define IS_WIN9X() (GetVersion()&0x80000000)
static void EMF_Update_MF_Xform(HDC hdc, enum_emh_data *info)
static void EMF_Update_MF_Xform(HDC hdc, const enum_emh_data *info)
{
XFORM mapping_mode_trans, final_trans;
FLOAT scaleX, scaleY;