File: database.h

package info (click to toggle)
wise 2.4.1-21
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 27,140 kB
  • sloc: ansic: 276,365; makefile: 1,003; perl: 886; lex: 93; yacc: 81; sh: 24
file content (30 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#ifndef DATABASE_HEADER_FILE
#define DATABASE_HEADER_FILE

/*
 * Enum for database reload success/failure
 */


enum return_status {
  DB_RETURN_UNKNOWN = 143,
  DB_RETURN_OK,
  DB_RETURN_ERROR,
  DB_RETURN_END };

typedef int DB_Return_Type;

/*
 * Enum for search success/failure
 */

enum search_return {
  SEARCH_UNKNOWN = 152,
  SEARCH_ERROR,
  SEARCH_OK };

typedef int Search_Return_Type;


#endif