]> 4ch.mooo.com Git - bakadb.git/blob - bakadb.h
Merge branch 'master' of ssh://4ch.mooo.com:26/var/www/16/bakadb
[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 #ifndef __BAKADB_H__
24 #define __BAKADB_H__
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <errno.h>
32 #include <time.h>
33
34 #include "types.h"
35 #include "bdb.h"
36
37 #define CUSTDB "../../customer.db"
38 #define BAKADB "baka.db"
39
40 extern iword baka_id;              //work order numer
41 extern byte baka_name[64];     //name of client
42 extern byte baka_phone[64];     //name of client
43 extern byte baka_address[64];     //name of client
44 extern byte baka_desc[4096];     //Description of the problem
45 extern time_t                           baka_date;
46 extern byte baka_price;                 //price
47 extern word baka_done;                  //is it done?
48
49 void bdwr(void);
50 void bddone(iword id);
51 void bdchange(iword id, byte i, sword t);
52 void mksheetdrbd();
53 void dbvar(sword i);
54 void getstrfromdb(sword i);
55 void cmpstrfromdb(word i);
56
57 #endif