summaryrefslogtreecommitdiff
path: root/shmscope.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-05-06 17:00:09 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-05-06 21:44:36 -0700
commit02906bf1766ad1769e03f9372611087389ee23b0 (patch)
tree461fca85f78e124bdc68ace534401d4e6af6b03e /shmscope.h
parent6dde56a016d502cf422b5c54247e225bb13e26d0 (diff)
downloadxscope-02906bf1766ad1769e03f9372611087389ee23b0.tar.gz
Constify many char pointers
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'shmscope.h')
-rw-r--r--shmscope.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/shmscope.h b/shmscope.h
index 7d1245e..412e51d 100644
--- a/shmscope.h
+++ b/shmscope.h
@@ -17,15 +17,15 @@ extern unsigned char MITSHMRequest;
extern unsigned char MITSHMError;
extern unsigned char MITSHMEvent;
-extern void MitshmQueryVersion (FD fd, unsigned char *buf);
-extern void MitshmQueryVersionReply (FD fd, unsigned char *buf);
-extern void MitshmAttach (FD fd, unsigned char *buf);
-extern void MitshmDetach (FD fd, unsigned char *buf);
-extern void MitshmPutImage (FD fd, unsigned char *buf);
-extern void MitshmGetImage (FD fd, unsigned char *buf);
-extern void MitshmGetImageReply (FD fd, unsigned char *buf);
-extern void MitshmCreatePixmap (FD fd, unsigned char *buf);
-extern void MitshmShmSegError (FD fd, unsigned char *buf);
+extern void MitshmQueryVersion (FD fd, const unsigned char *buf);
+extern void MitshmQueryVersionReply (FD fd, const unsigned char *buf);
+extern void MitshmAttach (FD fd, const unsigned char *buf);
+extern void MitshmDetach (FD fd, const unsigned char *buf);
+extern void MitshmPutImage (FD fd, const unsigned char *buf);
+extern void MitshmGetImage (FD fd, const unsigned char *buf);
+extern void MitshmGetImageReply (FD fd, const unsigned char *buf);
+extern void MitshmCreatePixmap (FD fd, const unsigned char *buf);
+extern void MitshmShmSegError (FD fd, const unsigned char *buf);
#endif