Minor changes.
[idzebra-moved-to-github.git] / rset / rstemp.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rstemp.c,v $
7  * Revision 1.2  1995-09-04 09:10:56  adam
8  * Minor changes.
9  *
10  * Revision 1.1  1994/11/04  13:21:30  quinn
11  * Working.
12  *
13  */
14
15 #include <rstemp.h>
16
17 static struct rset_control *r_create(const struct rset_control *sel, 
18                                      void *parms);
19 static int r_open(struct rset_control *ct, int wflag);
20 static void r_close(struct rset_control *ct);
21 static void r_delete(struct rset_control *ct);
22 static void r_rewind(struct rset_control *ct);
23 static int r_count(struct rset_control *ct);
24 static int r_read();
25 static int r_write();
26
27 static const rset_control control = 
28 {
29     "Temporary set",
30     0,
31     r_create,
32     r_open,
33     r_close,
34     r_delete,
35     r_rewind,
36     r_count,
37     r_read,
38     r_write
39 };
40
41 const rset_control *rset_kind_temp = &control;
42
43 static struct rset_control *r_create(const struct rset_control *sel, void *parms)
44 {}
45
46 static int r_open(struct rset_control *ct, int wflag)
47 {}
48
49 static void r_close(struct rset_control *ct)
50 {}
51
52 static void r_delete(struct rset_control *ct)
53 {}
54
55 static void r_rewind(struct rset_control *ct)
56 {}
57
58 static int r_count(struct rset_control *ct)
59 {}
60
61 static int r_read()
62 {}
63
64 static int r_write()
65 {}