]> 4ch.mooo.com Git - bakadb.git/blob - bakadb.h
Initial commit
[bakadb.git] / bakadb.h
1 /*
2  * Copyright (C) 2015 sparky4
3  *
4  * This file is part of baka database.
5  *
6  * baka database is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * baka database is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <time.h>
30
31 #ifndef __BAKADB_H__
32 #define __BAKADB_H__
33
34 #include "types.h"
35 #include "bdb.h"
36
37 extern iword baka_id;              //work order numer
38 extern byte baka_name[64];     //name of client
39 extern byte baka_phone[64];     //name of client
40 extern byte baka_address[64];     //name of client
41 extern byte baka_desc[4096];     //Description of the problem
42 extern time_t                           baka_date;
43 extern byte baka_price;                 //price
44 extern word baka_done;                  //is it done?
45
46 void bdwr(void);
47 void bddone(iword id);
48 void bdchange(iword id, byte i, sword t);
49 void mksheetdrbd();
50 void dbvar(sword i);
51 void getstrfromdb(sword i);
52 void cmpstrfromdb(word i);
53
54 #endif