Subversion Repositories Kolibri OS

Rev

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

Rev 5694 Rev 5702
Line 121... Line 121...
121
 
121
 
122
int llist::ProcessKey(dword key)
122
int llist::ProcessKey(dword key)
123
{
123
{
124
	switch(key)
124
	switch(key)
125
	{
125
	{
126
		case ASCII_KEY_DOWN: return KeyDown();
126
		case SCAN_CODE_DOWN: return KeyDown();
127
		case ASCII_KEY_UP:   return KeyUp();
127
		case SCAN_CODE_UP:   return KeyUp();
128
		case ASCII_KEY_HOME: return KeyHome();
128
		case SCAN_CODE_HOME: return KeyHome();
129
		case ASCII_KEY_END:  return KeyEnd();
129
		case SCAN_CODE_END:  return KeyEnd();
130
		case ASCII_KEY_PGUP: return KeyPgUp();
130
		case SCAN_CODE_PGUP: return KeyPgUp();
131
		case ASCII_KEY_PGDN: return KeyPgDown();
131
		case SCAN_CODE_PGDN: return KeyPgDown();
132
	}
132
	}
133
	return 0;
133
	return 0;
Line 134... Line 134...
134
}
134
}