Subversion Repositories Kolibri OS

Rev

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

Rev 5421 Rev 5465
Line 95... Line 95...
95
 
95
 
96
int llist::ProcessKey(dword key)
96
int llist::ProcessKey(dword key)
97
{
97
{
98
	switch(key)
98
	switch(key)
99
	{
99
	{
100
		case 177: return KeyDown();
100
		case ASCII_KEY_DOWN: return KeyDown();
101
		case 178: return KeyUp();
101
		case ASCII_KEY_UP:   return KeyUp();
102
		case 180: return KeyHome();
102
		case ASCII_KEY_HOME: return KeyHome();
103
		case 181: return KeyEnd();
103
		case ASCII_KEY_END:  return KeyEnd();
104
	}
104
	}
105
	return 0;
105
	return 0;
Line 106... Line 106...
106
}
106
}