summaryrefslogtreecommitdiff
path: root/vmod.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-11 15:18:26 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-01-03 11:02:11 -0800
commit6db8fd556e2562e9a0a821c0d6fd4f7cdcf6266c (patch)
tree45171678d6b1fbfe936bb2586933d3e03c93500a /vmod.h
parent299c9762b1dbe53f3297c54e5526aeae767d1a10 (diff)
downloadxorg-app-xkbcomp-6db8fd556e2562e9a0a821c0d6fd4f7cdcf6266c.tar.gz
Mark more pointers as const
Some suggested by cppcheck, others by manual code inspection Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'vmod.h')
-rw-r--r--vmod.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vmod.h b/vmod.h
index 66683b5..6e02036 100644
--- a/vmod.h
+++ b/vmod.h
@@ -44,7 +44,7 @@ extern void ClearVModInfo(VModInfo * /* info */ ,
XkbDescPtr /* xkb */
);
-extern Bool HandleVModDef(VModDef * /* stmt */ ,
+extern Bool HandleVModDef(const VModDef * /* stmt */ ,
unsigned /* mergeMode */ ,
VModInfo * /* info */
);
@@ -63,9 +63,9 @@ extern int LookupVModMask(XPointer /* priv */ ,
extern int FindKeypadVMod(XkbDescPtr /* xkb */
);
-extern Bool ResolveVirtualModifier(ExprDef * /* def */ ,
+extern Bool ResolveVirtualModifier(const ExprDef * /* def */ ,
ExprResult * /* value_rtrn */ ,
- VModInfo * /* info */
+ const VModInfo * /* info */
);
#endif /* VMOD_H */