GRASS Programmer's Manual  6.4.2(2012)
com_get.c
Go to the documentation of this file.
00001 #include <grass/gis.h>
00002 
00003 #include <grass/raster.h>
00004 #include <grass/graphics.h>
00005 #include "transport.h"
00006 
00007 void R_get_location_with_box(int cx, int cy, int *wx, int *wy, int *button)
00008 {
00009     trans->get_location_with_box(cx, cy, wx, wy, button);
00010 }
00011 
00012 void R_get_location_with_line(int cx, int cy, int *wx, int *wy, int *button)
00013 {
00014     trans->get_location_with_line(cx, cy, wx, wy, button);
00015 }
00016 
00017 void R_get_location_with_pointer(int *wx, int *wy, int *button)
00018 {
00019     trans->get_location_with_pointer(wx, wy, button);
00020 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines