Subversion Repositories Kolibri OS

Rev

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

Rev 4164 Rev 4166
Line 43... Line 43...
43
//WindowDefinitions
43
//WindowDefinitions
44
#define WIN_W         600
44
#define WIN_W         600
45
#define WIN_H         440
45
#define WIN_H         440
46
#define WIN_MIN_W     500
46
#define WIN_MIN_W     500
47
#define WIN_MIN_H     380
47
#define WIN_MIN_H     380
48
#define LOGIN_HEADER   "Login - Email client Liza 0.9b"
48
#define LOGIN_HEADER   "Login - Email client Liza 0.9e"
49
#define OPTIONS_HEADER "Options - Email client Liza 0.9b"
49
#define OPTIONS_HEADER "Options - Email client Liza 0.9e"
50
#define MAILBOX_HEADER "Mail Box - Email client Liza 0.9b"
50
#define MAILBOX_HEADER "Mail Box - Email client Liza 0.9e"
51
#define BUFFERSIZE		512	
51
#define BUFFERSIZE		512	
52
proc_info Form;
52
proc_info Form;
53
system_colors sc;
53
system_colors sc;
54
#define LBUMP 0xFFFfff
54
#define LBUMP 0xFFFfff
Line 143... Line 143...
143
	strcat(#write_data, #pass_b64);
143
	strcat(#write_data, #pass_b64);
144
	WriteFile(strlen(#write_data)+1, #write_data, "/sys/network/mail.dat");
144
	WriteFile(strlen(#write_data)+1, #write_data, "/sys/network/mail.dat");
145
	ExitProcess();
145
	ExitProcess();
146
}
146
}
Line -... Line 147...
-
 
147
 
-
 
148
int GetRequest(dword command, text)
-
 
149
{
-
 
150
	strcpy(#request, command);
-
 
151
	if (text)
-
 
152
	{
-
 
153
		chrcat(#request, ' ');
-
 
154
		strcat(#request, text);
-
 
155
	}
-
 
156
	strcat(#request, "\n");
-
 
157
	return strlen(#request);
-
 
158
}
-
 
159
 
-
 
160
void StopConnect(dword message)
-
 
161
{
-
 
162
	if (message) notify(message);
-
 
163
	aim = STOP;
Line 147... Line 164...
147
 
164
}