summaryrefslogtreecommitdiff
path: root/symbols.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@redhat.com>2008-08-11 18:01:48 +0930
committerPeter Hutterer <peter.hutterer@redhat.com>2008-08-18 17:40:24 +0930
commiteb18e9176841b3ea64c497f1919686e134713eb6 (patch)
treea080f6a26fdf8c44f0408ac21d299652cfd41c2a /symbols.c
parent9b877d83947708259252275e14f6995dcf7c29ce (diff)
downloadxorg-app-xkbcomp-eb18e9176841b3ea64c497f1919686e134713eb6.tar.gz
Add some explanatory comments
Diffstat (limited to 'symbols.c')
-rw-r--r--symbols.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/symbols.c b/symbols.c
index 7c1807a..883285e 100644
--- a/symbols.c
+++ b/symbols.c
@@ -61,7 +61,7 @@ extern Atom tok_KEYPAD;
typedef struct _KeyInfo
{
CommonInfo defs;
- unsigned long name;
+ unsigned long name; /* the 4 chars of the key name, as long */
unsigned char groupInfo;
unsigned char typesDefined;
unsigned char symsDefined;
@@ -78,6 +78,9 @@ typedef struct _KeyInfo
Atom dfltType;
} KeyInfo;
+/**
+ * Init the given key info to sane values.
+ */
static void
InitKeyInfo(KeyInfo * info)
{
@@ -108,6 +111,9 @@ InitKeyInfo(KeyInfo * info)
return;
}
+/**
+ * Free memory associated with this key info and reset to sane values.
+ */
static void
FreeKeyInfo(KeyInfo * info)
{
@@ -136,9 +142,15 @@ FreeKeyInfo(KeyInfo * info)
info->vmodmap = 0;
info->nameForOverlayKey = 0;
info->repeat = RepeatUndefined;
+ info->allowNone = 0;
return;
}
+/**
+ * Copy old into new, optionally reset old to 0.
+ * If old is reset, new simply re-uses old's memory. Otherwise, the memory is
+ * newly allocated and new points to the new memory areas.
+ */
static Bool
CopyKeyInfo(KeyInfo * old, KeyInfo * new, Bool clearOld)
{