diff options
author | Kevin E Martin <kem@kem.org> | 2004-07-29 23:43:40 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2004-07-29 23:43:40 +0000 |
commit | 813d75f9d3c7b540977926e37310fa683daf12e1 (patch) | |
tree | 00c2764950a672f62f4919fe57d5d613b325feb7 /include | |
parent | 274d5044ac41523ff23912c223177c429c710e09 (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')
-rw-r--r-- | include/dix.h | 4 | ||||
-rw-r--r-- | include/window.h | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/include/dix.h b/include/dix.h index 3266a30be..a7d71ef68 100644 --- a/include/dix.h +++ b/include/dix.h @@ -433,14 +433,14 @@ extern ClientPtr LookupClient( extern void NoopDDA(void); -int AlterSaveSetForClient( +extern int AlterSaveSetForClient( ClientPtr /*client*/, WindowPtr /*pWin*/, unsigned /*mode*/, Bool /*toRoot*/, Bool /*remap*/); -void DeleteWindowFromAnySaveSet( +extern void DeleteWindowFromAnySaveSet( WindowPtr /*pWin*/); extern void BlockHandler( 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 */ |