mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 19:45:37 +00:00
17 lines
367 B
C
17 lines
367 B
C
|
/* canvas.c : Glue for accessing fields in a GnomeCanvas
|
||
|
*
|
||
|
* Author: Mike Kestner (mkestner@ximian.com)
|
||
|
*
|
||
|
* Copyright (C) 2004 Novell, Inc.
|
||
|
*/
|
||
|
|
||
|
#include <libgnomecanvas/gnome-canvas.h>
|
||
|
|
||
|
gdouble gnomesharp_canvas_get_pixels_per_unit (GnomeCanvas *canvas);
|
||
|
|
||
|
gdouble
|
||
|
gnomesharp_canvas_get_pixels_per_unit (GnomeCanvas *canvas)
|
||
|
{
|
||
|
return canvas->pixels_per_unit;
|
||
|
}
|