summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-04 02:24:42 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-04 02:24:42 -0200
commit356dec75b96e7b235632bb8c5f7cc70002a590b1 (patch)
treec9aa7c5d9b6a3e65402dca7876b5f1e9bac9ca30
parentfe7ede0c073bd8dc22f61388b8a5d83f17696113 (diff)
Ensure symbol GXRandRSetConfig is of public visibility.
Symbol is referenced via LoaderSymbol(), and this patch doesn't should provide the same behavior as when compiling with public symbols by default.
-rw-r--r--src/geode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/geode.h b/src/geode.h
index 755cb5e..0ba32fe 100644
--- a/src/geode.h
+++ b/src/geode.h
@@ -413,8 +413,8 @@ void GXShowCursor(ScrnInfoPtr pScrni);
/* gx_randr.c */
Rotation GXGetRotation(ScreenPtr pScreen);
Bool GXRandRInit(ScreenPtr pScreen, int rotation);
-Bool GXRandRSetConfig(ScreenPtr pScreen, Rotation rotation, int rate,
- RRScreenSizePtr pSize);
+extern _X_EXPORT Bool GXRandRSetConfig(ScreenPtr pScreen, Rotation rotation,
+ int rate, RRScreenSizePtr pSize);
/* gx_rotate.c */
Bool GXRotate(ScrnInfoPtr pScrni, DisplayModePtr mode);