errors.h | errors.h | |||
---|---|---|---|---|
/* $Id$ | /* $Id: errors.h,v 1.1.1.1.6.1 2004/11/14 12:56:31 cegger Exp $ | |||
*************************************************************************** *** | *************************************************************************** *** | |||
GGI error definitions | GGI error definitions | |||
Copyright (C) 1998 Marcus Sundberg [marcus@ggi-project.org] | Copyright (C) 1998 Marcus Sundberg [marcus@ggi-project.org] | |||
Permission is hereby granted, free of charge, to any person obtaining a | Permission is hereby granted, free of charge, to any person obtaining a | |||
copy of this software and associated documentation files (the "Software" ), | copy of this software and associated documentation files (the "Software" ), | |||
to deal in the Software without restriction, including without limitatio n | to deal in the Software without restriction, including without limitatio n | |||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | the rights to use, copy, modify, merge, publish, distribute, sublicense, | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
keyboard.h | keyboard.h | |||
---|---|---|---|---|
/* $Id: keyboard.h,v 1.2 2003/11/30 07:18:30 skids Exp $ | /* $Id$ | |||
*************************************************************************** *** | *************************************************************************** *** | |||
LibGII keyboard definitions | LibGII keyboard definitions | |||
Copyright (C) 1998 Andrew Apted [andrew@ggi-project.org] | Copyright (C) 1998 Andrew Apted [andrew@ggi-project.org] | |||
Copyright (C) 1999 Marcus Sundberg [marcus@ggi-project.org] | Copyright (C) 1999 Marcus Sundberg [marcus@ggi-project.org] | |||
Permission is hereby granted, free of charge, to any person obtaining a | Permission is hereby granted, free of charge, to any person obtaining a | |||
copy of this software and associated documentation files (the "Software" ), | copy of this software and associated documentation files (the "Software" ), | |||
to deal in the Software without restriction, including without limitatio n | to deal in the Software without restriction, including without limitatio n | |||
skipping to change at line 149 | skipping to change at line 149 | |||
#define GIIK_F60 GII_KEY(GII_KT_FN, 60) | #define GIIK_F60 GII_KEY(GII_KT_FN, 60) | |||
#define GIIK_F61 GII_KEY(GII_KT_FN, 61) | #define GIIK_F61 GII_KEY(GII_KT_FN, 61) | |||
#define GIIK_F62 GII_KEY(GII_KT_FN, 62) | #define GIIK_F62 GII_KEY(GII_KT_FN, 62) | |||
#define GIIK_F63 GII_KEY(GII_KT_FN, 63) | #define GIIK_F63 GII_KEY(GII_KT_FN, 63) | |||
#define GIIK_F64 GII_KEY(GII_KT_FN, 64) | #define GIIK_F64 GII_KEY(GII_KT_FN, 64) | |||
/* special keys */ | /* special keys */ | |||
#define GIIK_VOID GII_KEY(GII_KT_SPEC, 0) | #define GIIK_VOID GII_KEY(GII_KT_SPEC, 0) | |||
#define GIIK_Enter GIIUC_Return | /* GIIK_Enter and GIIK_Delete are equal to GIIUC_Return | |||
#define GIIK_Delete GIIUC_Delete | * and GIIUC_Delete, but they get #defined far below | |||
* from here. Thus use the hardcoded ASCII values. */ | ||||
#define GIIK_Enter 0x0d | ||||
#define GIIK_Delete 0x7f | ||||
#define GIIK_Break GII_KEY(GII_KT_SPEC, 5) | #define GIIK_Break GII_KEY(GII_KT_SPEC, 5) | |||
#define GIIK_ScrollForw GII_KEY(GII_KT_SPEC, 10) | #define GIIK_ScrollForw GII_KEY(GII_KT_SPEC, 10) | |||
#define GIIK_ScrollBack GII_KEY(GII_KT_SPEC, 11) | #define GIIK_ScrollBack GII_KEY(GII_KT_SPEC, 11) | |||
#define GIIK_Boot GII_KEY(GII_KT_SPEC, 12) | #define GIIK_Boot GII_KEY(GII_KT_SPEC, 12) | |||
#define GIIK_Compose GII_KEY(GII_KT_SPEC, 14) | #define GIIK_Compose GII_KEY(GII_KT_SPEC, 14) | |||
#define GIIK_SAK GII_KEY(GII_KT_SPEC, 15) | #define GIIK_SAK GII_KEY(GII_KT_SPEC, 15) | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 6 lines changed or added | |||