summaryrefslogtreecommitdiff
path: root/include/window.h
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2004-07-29 23:43:40 +0000
committerKevin E Martin <kem@kem.org>2004-07-29 23:43:40 +0000
commit813d75f9d3c7b540977926e37310fa683daf12e1 (patch)
tree00c2764950a672f62f4919fe57d5d613b325feb7 /include/window.h
parent274d5044ac41523ff23912c223177c429c710e09 (diff)
Use LibraryTargetName when not building a loadable server
Move extern function declarations to window.h Cleaned up code since client's saveSet is no longer defined as a pointer* Added externs back in Change #if to #ifdef to fix compiler warning Add function declarations that were inadvertently removed by previous check in Disable extensions that are not (yet) supported by DMX
Diffstat (limited to 'include/window.h')
-rw-r--r--include/window.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/window.h b/include/window.h
index cf019664a..1a2845f90 100644
--- a/include/window.h
+++ b/include/window.h
@@ -252,10 +252,14 @@ void ResizeChildrenWinSize(
int /*dw*/,
int /*dh*/);
-RegionPtr
-CreateBoundingShape (WindowPtr pWin);
+extern void SendShapeNotify(
+ WindowPtr /* pWin */,
+ int /* which */ );
-RegionPtr
-CreateClipShape (WindowPtr pWin);
+extern RegionPtr CreateBoundingShape(
+ WindowPtr /* pWin */ );
+
+extern RegionPtr CreateClipShape(
+ WindowPtr /* pWin */ );
#endif /* WINDOW_H */