Subversion Repositories Kolibri OS

Rev

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

Rev 4139 Rev 4153
Line 244... Line 244...
244
int GetRequest(dword command, text)
244
int GetRequest(dword command, text)
245
{
245
{
246
	strcpy(#request, command);
246
	strcpy(#request, command);
247
	if (text)
247
	if (text)
248
	{
248
	{
249
		strcat(#request, " ");
249
		chrcat(#request, ' ');
250
		strcat(#request, text);
250
		strcat(#request, text);
251
	}
251
	}
252
	strcat(#request, "\n");
252
	strcat(#request, "\n");
253
	return strlen(#request);
253
	return strlen(#request);
254
}
254
}