comparison src/main.h @ 123:e76d85ea87ac

Rename SQL_MAX_* defines to SQL_LEN_* for being more descriptive .. maybe.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 06 Jul 2017 15:47:18 +0300
parents 404d567edaab
children 6e2d26e7a0b4
comparison
equal deleted inserted replaced
122:f0db8267911b 123:e76d85ea87ac
25 #define APP_ID "Kampus Syntilista" // Application ID (for settings) 25 #define APP_ID "Kampus Syntilista" // Application ID (for settings)
26 #define APP_NAME "Café Kampus Syntilista" // Application title/name 26 #define APP_NAME "Café Kampus Syntilista" // Application title/name
27 #define APP_SQLITE_FILE "syntilista.sqlite3" // SQLite3 database file name (without path) 27 #define APP_SQLITE_FILE "syntilista.sqlite3" // SQLite3 database file name (without path)
28 28
29 29
30 #define SQL_MAX_FIRST_NAME 128 30 #define SQL_LEN_FIRST_NAME 128
31 #define SQL_MAX_LAST_NAME 128 31 #define SQL_LEN_LAST_NAME 128
32 #define SQL_MAX_EXTRA_INFO 2048 32 #define SQL_LEN_EXTRA_INFO 2048
33 33
34 34
35 // 35 //
36 // Custom SQL models 36 // Custom SQL models
37 // 37 //