Ignore:
Timestamp:
Oct 17, 2000, 12:26:53 AM (25 years ago)
Author:
sandervl
Message:

fs fixes for font & line callbacks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/gdi32.cpp

    r4214 r4492  
    1 /* $Id: gdi32.cpp,v 1.55 2000-09-08 04:31:48 phaller Exp $ */
     1/* $Id: gdi32.cpp,v 1.56 2000-10-16 22:26:53 sandervl Exp $ */
    22
    33/*
     
    10531053//******************************************************************************
    10541054//******************************************************************************
    1055 BOOL WIN32API Polygon( HDC arg1, const POINT * arg2, int  arg3)
    1056 {
    1057     dprintf(("GDI32: Polygon"));
    1058     return O32_Polygon(arg1, arg2, arg3);
     1055BOOL WIN32API Polygon( HDC hdc, const POINT *lpPoints, int count)
     1056{
     1057    dprintf(("GDI32: Polygon %x %x %d", hdc, lpPoints, count));
     1058    return O32_Polygon(hdc, lpPoints, count);
    10591059}
    10601060//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.