Subversion Repositories Kolibri OS

Rev

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

Rev 5514 Rev 5608
Line -... Line 1...
-
 
1
void Paste() {
-
 
2
	copy_stak = malloc(4096);
-
 
3
	CreateThread(#PasteThread,copy_stak+4092);
-
 
4
}
-
 
5
 
-
 
6
 
1
byte copy_to[4096];
7
byte copy_to[4096];
2
byte copy_from[4096];
8
byte copy_from[4096];
3
byte cut_active=0;
9
byte cut_active=0;
Line 4... Line 10...
4
 
10
 
Line 44... Line 50...
44
	free(buff_data);
50
	free(buff_data);
45
}
51
}
46
 
52
 
Line 47... Line 53...
47
 
53
 
48
void Paste()
54
void PasteThread()
49
{
55
{
50
	char copy_rezult;
56
	char copy_rezult;
51
	int j;
57
	int j;
52
	int cnt = 0;
58
	int cnt = 0;