summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/hw/xfree86/drivers/glint
diff options
context:
space:
mode:
authoralanh <alanh>2000-06-12 22:22:58 +0000
committeralanh <alanh>2000-06-12 22:22:58 +0000
commit39c6e4c6d6783e77661d19f3a287b8fb87f2301a (patch)
treef4c8b55de1e332bd1073e241aeb3c1fffc1553cc /xc/programs/Xserver/hw/xfree86/drivers/glint
parenta819eb70a033acc9e67eaf05c5f6263a6391b39a (diff)
Fix exported symbols.
Diffstat (limited to 'xc/programs/Xserver/hw/xfree86/drivers/glint')
-rw-r--r--xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c b/xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c
index f0b316729..0195bdf1e 100644
--- a/xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c
+++ b/xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c
@@ -100,9 +100,9 @@ static Bool GLINTCloseScreen(int scrnIndex, ScreenPtr pScreen);
static Bool GLINTSaveScreen(ScreenPtr pScreen, int mode);
/* Required if the driver supports mode switching */
-static Bool GLINTSwitchMode(int scrnIndex, DisplayModePtr mode, int flags);
+Bool GLINTSwitchMode(int scrnIndex, DisplayModePtr mode, int flags);
/* Required if the driver supports moving the viewport */
-static void GLINTAdjustFrame(int scrnIndex, int x, int y, int flags);
+void GLINTAdjustFrame(int scrnIndex, int x, int y, int flags);
/* Optional functions */
static void GLINTFreeScreen(int scrnIndex, int flags);
@@ -2814,7 +2814,7 @@ GLINTScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
}
/* Usually mandatory */
-static Bool
+Bool
GLINTSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
{
ScrnInfoPtr pScrn;
@@ -2862,7 +2862,7 @@ GLINTSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
* displayed location in the video memory.
*/
/* Usually mandatory */
-static void
+void
GLINTAdjustFrame(int scrnIndex, int x, int y, int flags)
{
ScrnInfoPtr pScrn;