comparison src/main.h @ 149:fd960e586678

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 28 Aug 2017 11:11:16 +0300
parents 9f3c0a99bcb1
children 2a8c97753381
comparison
equal deleted inserted replaced
148:665421937ec8 149:fd960e586678
24 24
25 25
26 // 26 //
27 // Global application defines 27 // Global application defines
28 // 28 //
29 #define APP_VENDOR "TNSP" // Vendor ID (for settings, etc.) 29 #define APP_VENDOR "TNSP" // Vendor ID (for settings, etc.)
30 #define APP_ID "Kampus Syntilista" // Application ID (for settings) 30 #define APP_ID "Kampus Syntilista" // Application ID (for settings)
31 #define APP_NAME "Café Kampus Syntilista" // Application title/name 31 #define APP_NAME "Café Kampus Syntilista" // Application title/name
32 #define APP_SQLITE_FILE "syntilista.sqlite3" // SQLite3 database file name (without path) 32 #define APP_SQLITE_FILE "syntilista.sqlite3" // SQLite3 database file name (without path)
33 #define APP_LOG_FILE "log.txt" // Application log file name (without path) 33 #define APP_LOG_FILE "log.txt" // Application log file name (without path)
34 34
35 #define SQL_LEN_FIRST_NAME 128 35 // SQL database field width/lengths
36 #define SQL_LEN_LAST_NAME 128 36 #define SQL_LEN_FIRST_NAME 128
37 #define SQL_LEN_EXTRA_INFO 2048 37 #define SQL_LEN_LAST_NAME 128
38 #define SQL_LEN_EXTRA_INFO 2048
38 39
39 40
40 // 41 //
41 // Custom SQL models 42 // Custom SQL models
42 // 43 //