diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:52 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:52 +0000 |
commit | 3c5799ac5f6f685dec989b15ac65e02b12a00288 (patch) | |
tree | 0f6527b0e3557b99bed58e69fcca358e8cb53918 | |
parent | bdbc205e36dbceb1c9c21e20dd9d2e4bf828989e (diff) |
Bug #3626: _X_EXPORT tags for video and input drivers.XORG-6_8_99_13
-rw-r--r-- | src/apm_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apm_driver.c b/src/apm_driver.c index 6d87a92..8296e74 100644 --- a/src/apm_driver.c +++ b/src/apm_driver.c @@ -54,7 +54,7 @@ static void ApmProbeDDC(ScrnInfoPtr pScrn, int index); int ApmPixmapIndex = -1; static unsigned long ApmGeneration = 0; -DriverRec APM = { +_X_EXPORT DriverRec APM = { VERSION, APM_DRIVER_NAME, ApmIdentify, @@ -241,7 +241,7 @@ static MODULESETUPPROTO(apmSetup); * This is the module init data. * Its name has to be the driver name followed by ModuleData. */ -XF86ModuleData apmModuleData = { &apmVersRec, apmSetup, NULL }; +_X_EXPORT XF86ModuleData apmModuleData = { &apmVersRec, apmSetup, NULL }; static pointer apmSetup(pointer module, pointer opts, int *errmaj, int *errmain) |