~ctwm/ctwm/trunk

459.1.6 by Matthew Fuller
Start putting together some util funcs to turn X event id's into names
1
/*
2
 * X event name/number mapping utils
3
 */
484 by Matthew Fuller
Consistently rename all the include guards so they match the filename,
4
#ifndef _CTWM_EVENT_NAMES_H
5
#define _CTWM_EVENT_NAMES_H
459.1.6 by Matthew Fuller
Start putting together some util funcs to turn X event id's into names
6
7
#include <stddef.h>    // for size_t
8
9
size_t event_names_size(void);
10
const char *event_name_by_num(int);
11
int event_num_by_name(const char *);
12
484 by Matthew Fuller
Consistently rename all the include guards so they match the filename,
13
#endif /* _CTWM_EVENT_NAMES_H */