Subversion Repositories Kolibri OS

Rev

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

Rev 5630 Rev 5970
Line 11... Line 11...
11
	$mov ecx,1
11
	$mov ecx,1
12
	$int 0x40
12
	$int 0x40
13
}
13
}
14
 
14
 
Line 15... Line 15...
15
inline fastcall int GetMouseDelay() {
15
inline fastcall int GetMouseAcceleration() {
16
	$mov eax,18
16
	$mov eax,18
17
	$mov ebx,19
17
	$mov ebx,19
18
	$mov ecx,2
18
	$mov ecx,2
19
	$int 0x40
19
	$int 0x40
20
}
20
}
Line 21... Line 21...
21
 
21
 
22
inline fastcall void SetMouseDelay(EDX) {
22
inline fastcall void SetMouseAcceleration(EDX) {
23
	$mov eax,18
23
	$mov eax,18
24
	$mov ebx,19
24
	$mov ebx,19
25
	$mov ecx,3
25
	$mov ecx,3
26
	$int 0x40
26
	$int 0x40
27
}
27
}
-
 
28
 
-
 
29
inline fastcall int GetMouseDoubleClickDelay() {
-
 
30
	$mov eax,18
-
 
31
	$mov ebx,19
-
 
32
	$mov ecx,6
-
 
33
	$int 0x40
-
 
34
}
-
 
35
 
-
 
36
inline fastcall void SetMouseDoubleClickDelay(DL) {
-
 
37
	$mov eax,18
-
 
38
	$mov ebx,19
-
 
39
	$mov ecx,6
-
 
40
	$int 0x40
-
 
41
}
28
42