Subversion Repositories Kolibri OS

Rev

Rev 7444 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7444 Rev 8954
Line 1... Line 1...
1
#define MAX_LINE_CHARS 256
1
#define MAX_LINE_CHARS 128
Line 2... Line 2...
2
 
2
 
3
#define CHBOX 12
3
#define CHBOX 12
4
#define CHECKBOX_ID 50
4
#define CHECKBOX_ID 50
Line 33... Line 33...
33
//                                                   //
33
//                                                   //
34
//===================================================//
34
//===================================================//
Line 35... Line 35...
35
 
35
 
36
struct NOTES : llist {
36
struct NOTES : llist {
37
	char txt_path[4096];
37
	char txt_path[4096];
38
	char txt_data[MAX_LINE_CHARS*LINES_COUNT];
38
	char txt_data[MAX_LINE_CHARS+4*LINES_COUNT+30];
Line 39... Line 39...
39
	bool txt_file_exists;
39
	bool txt_file_exists;
Line 40... Line 40...
40
 
40