GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
Main Page
Related Pages
+
Data Structures
Data Structures
Class Hierarchy
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
x
y
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
z
+
Enumerations
a
c
d
e
h
l
m
n
o
p
r
s
t
v
y
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
rowio.h
Go to the documentation of this file.
1
#ifndef GRASS_ROWIO_H
2
#define GRASS_ROWIO_H
3
4
typedef
struct
5
{
6
int
fd
;
/* file descriptor for reading */
7
int
nrows
;
/* number of rows to be held in memory */
8
int
len
;
/* buffer length */
9
int
cur
;
/* current row in memory */
10
void
*
buf
;
/* current data buf */
11
int (*getrow) (int,
void
*, int, int);
/* routine to do the row reads */
12
int (*putrow) (int,
const
void
*, int, int);
/* routine to do the row writes */
13
14
struct
ROWIO_RCB
15
{
16
void
*
buf
;
/* data buffer */
17
int
age
;
/* for order of access */
18
int
row
;
/* row number */
19
int
dirty
;
20
} *rcb;
21
}
ROWIO
;
22
23
#include <
grass/defs/rowio.h
>
24
25
#endif
ROWIO::ROWIO_RCB
Definition:
rowio.h:14
ROWIO::ROWIO_RCB::buf
void * buf
Definition:
rowio.h:16
ROWIO::ROWIO_RCB::row
int row
Definition:
rowio.h:18
ROWIO::cur
int cur
Definition:
rowio.h:9
ROWIO::ROWIO_RCB::age
int age
Definition:
rowio.h:17
rowio.h
ROWIO::len
int len
Definition:
rowio.h:8
ROWIO::buf
void * buf
Definition:
rowio.h:10
ROWIO
Definition:
rowio.h:4
ROWIO::fd
int fd
Definition:
rowio.h:6
ROWIO::nrows
int nrows
Definition:
rowio.h:7
ROWIO::ROWIO_RCB::dirty
int dirty
Definition:
rowio.h:19
include
grass
rowio.h
Generated on Mon May 31 2021 05:21:31 for GRASS GIS 7 Programmer's Manual by
1.8.13