mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 19:50:03 +01:00
Use the same struct for both InputOption and XF86OptionRec so we don't need to convert to and fro the two in the config backends. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
14 lines
220 B
C
14 lines
220 B
C
#ifndef OPTIONSTR_H_
|
|
#define OPTIONSTR_H_
|
|
#include "list.h"
|
|
|
|
|
|
struct _InputOption {
|
|
GenericListRec list;
|
|
char *opt_name;
|
|
char *opt_val;
|
|
int opt_used;
|
|
char *opt_comment;
|
|
};
|
|
|
|
#endif /* INPUTSTRUCT_H */
|