diff options
author | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2011-01-11 20:56:41 +0000 |
---|---|---|
committer | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2011-01-11 20:56:41 +0000 |
commit | 9ac5a1302296cc63925671b566af8c4618cb581e (patch) | |
tree | a57d391645c4a3c5b6f756bae61bd7c2fe25009f /app/xkbcomp/keycodes.h | |
parent | e7e24b28c0e0b96461d93395184a8a34f10631ca (diff) |
Update to xkbcomp 1.2.0.
ok matthieu@
Diffstat (limited to 'app/xkbcomp/keycodes.h')
-rw-r--r-- | app/xkbcomp/keycodes.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/app/xkbcomp/keycodes.h b/app/xkbcomp/keycodes.h index 9333718cc..11f4460fe 100644 --- a/app/xkbcomp/keycodes.h +++ b/app/xkbcomp/keycodes.h @@ -1,4 +1,3 @@ -/* $Xorg: keycodes.h,v 1.3 2000/08/17 19:54:32 cpqbld Exp $ */ /************************************************************ Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc. @@ -24,21 +23,18 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. ********************************************************/ -/* $XFree86$ */ #ifndef KEYCODES_H #define KEYCODES_H 1 #define KeyNameToLong(n) ((((unsigned long)n[0])<<24)|(((unsigned long)n[1])<<16)|(((unsigned long)n[2])<<8)|n[3]) -extern char * longText( - unsigned long /* val */, - unsigned /* format */ -); +extern char *longText(unsigned long /* val */ , + unsigned /* format */ + ); -extern void LongToKeyName( - unsigned long /* val */, - char * /* name_rtrn */ -); +extern void LongToKeyName(unsigned long /* val */ , + char * /* name_rtrn */ + ); #endif /* KEYCODES_H */ |