GRASS Programmer's Manual
6.4.3(2013)-r
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
Panel.c
Go to the documentation of this file.
1
#include "
driver.h
"
2
#include "
driverlib.h
"
3
4
void
COM_Panel_save
(
const
char
*
name
,
int
top,
int
bottom,
int
left,
5
int
right)
6
{
7
if
(
driver
->
Panel_save
)
8
(*
driver
->
Panel_save
) (name, top, bottom, left, right);
9
}
10
11
void
COM_Panel_restore
(
const
char
*
name
)
12
{
13
if
(
driver
->
Panel_restore
)
14
(*
driver
->
Panel_restore
) (name);
15
}
16
17
void
COM_Panel_delete
(
const
char
*
name
)
18
{
19
if
(
driver
->
Panel_delete
)
20
(*
driver
->
Panel_delete
) (name);
21
}
lib
driver
Panel.c
Generated on Thu Sep 26 2013 09:48:05 for GRASS Programmer's Manual by
1.8.4