summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-10-15 07:13:23 +0200
committerDavid Tardon <dtardon@redhat.com>2012-10-15 07:41:19 +0200
commitd475a059fc9f07f4d896bd67649c7d800fc66f6f (patch)
treed431516998713d0837d2437a355dc1dbd5334830 /accessibility
parent6885fc51b93ee94197aae5e9ae4e9be503bc9903 (diff)
export symbols after gbuildification
Change-Id: I5c8ef1009a65fa5a38174898f58f9146e1367aa9
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx
index cb0fa441fc49..5b66b22106d3 100644
--- a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx
+++ b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx
@@ -68,12 +68,12 @@ jmethodID g_jmRevokeTopWindow = 0;
// functions
//------------------------------------------------------------------------
-JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *, void *)
+SAL_DLLPUBLIC_EXPORT jint JNICALL JNI_OnLoad(JavaVM *, void *)
{
return JNI_VERSION_1_2;
}
-JNIEXPORT jbyteArray JNICALL
+SAL_DLLPUBLIC_EXPORT jbyteArray JNICALL
Java_org_openoffice_accessibility_WindowsAccessBridgeAdapter_getProcessID(JNIEnv *pJNIEnv, jclass clazz)
{
// Initialize global class and method references
@@ -109,7 +109,7 @@ Java_org_openoffice_accessibility_WindowsAccessBridgeAdapter_getProcessID(JNIEnv
return jbaProcessID;
}
-JNIEXPORT jboolean JNICALL
+SAL_DLLPUBLIC_EXPORT jboolean JNICALL
Java_org_openoffice_accessibility_WindowsAccessBridgeAdapter_createMapping(JNIEnv *, jclass, jlong pointer)
{
uno_Environment * pJava_environment = NULL;
@@ -165,7 +165,7 @@ Java_org_openoffice_accessibility_WindowsAccessBridgeAdapter_createMapping(JNIEn
return JNI_TRUE;
}
-JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *jvm, void *)
+SAL_DLLPUBLIC_EXPORT void JNICALL JNI_OnUnload(JavaVM *jvm, void *)
{
::Application::RemoveEventListener(g_aEventListenerLink);