GRASS Programmer's Manual  6.4.2(2012)
Panel.c
Go to the documentation of this file.
00001 #include "driver.h"
00002 #include "driverlib.h"
00003 
00004 void COM_Panel_save(const char *name, int top, int bottom, int left,
00005                     int right)
00006 {
00007     if (driver->Panel_save)
00008         (*driver->Panel_save) (name, top, bottom, left, right);
00009 }
00010 
00011 void COM_Panel_restore(const char *name)
00012 {
00013     if (driver->Panel_restore)
00014         (*driver->Panel_restore) (name);
00015 }
00016 
00017 void COM_Panel_delete(const char *name)
00018 {
00019     if (driver->Panel_delete)
00020         (*driver->Panel_delete) (name);
00021 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines