Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c0ab229d
Kaydet (Commit)
c0ab229d
authored
Mar 19, 2012
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Uniquify uno_initEnvironment and uno_ext_getMapping in the static linking case
üst
c3f36b0e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
9 deletions
+36
-9
component.cxx
bridges/source/cpp_uno/shared/component.cxx
+7
-3
environment.h
cppu/inc/uno/environment.h
+6
-6
mapping.h
cppu/inc/uno/mapping.h
+9
-0
AffineBridge.cxx
cppu/source/AffineBridge/AffineBridge.cxx
+7
-0
LogBridge.cxx
cppu/source/LogBridge/LogBridge.cxx
+7
-0
No files found.
bridges/source/cpp_uno/shared/component.cxx
Dosyayı görüntüle @
c0ab229d
...
...
@@ -196,7 +196,7 @@ static void SAL_CALL environmentDisposing(
&
bridges
::
cpp_uno
::
shared
::
g_moduleCount
.
modCnt
);
}
#ifndef
IOS
#ifndef
DISABLE_DYNLOADING
SAL_DLLPUBLIC_EXPORT
sal_Bool
SAL_CALL
component_canUnload
(
TimeValue
*
pTime
)
SAL_THROW_EXTERN_C
()
{
return
bridges
::
cpp_uno
::
shared
::
g_moduleCount
.
canUnload
(
...
...
@@ -205,8 +205,8 @@ SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_canUnload(TimeValue * pTime) SA
#endif
#ifdef
IOS
#define uno_initEnvironment
gcc3
_uno_initEnvironment
#ifdef
DISABLE_DYNLOADING
#define uno_initEnvironment
CPPU_ENV
_uno_initEnvironment
#endif
void
SAL_CALL
uno_initEnvironment
(
uno_Environment
*
pCppEnv
)
...
...
@@ -227,6 +227,10 @@ void SAL_CALL uno_initEnvironment(uno_Environment * pCppEnv)
pCppEnv
->
environmentDisposing
=
environmentDisposing
;
}
#ifdef DISABLE_DYNLOADING
#define uno_ext_getMapping CPPU_ENV_uno_ext_getMapping
#endif
void
SAL_CALL
uno_ext_getMapping
(
uno_Mapping
**
ppMapping
,
uno_Environment
*
pFrom
,
uno_Environment
*
pTo
)
SAL_THROW_EXTERN_C
()
...
...
cppu/inc/uno/environment.h
Dosyayı görüntüle @
c0ab229d
...
...
@@ -266,6 +266,12 @@ typedef struct _uno_ExtEnvironment
typedef
void
(
SAL_CALL
*
uno_initEnvironmentFunc
)(
uno_Environment
*
pEnv
);
#define UNO_INIT_ENVIRONMENT "uno_initEnvironment"
#ifdef DISABLE_DYNLOADING
/* We link statically and have just one kind of environment */
void
SAL_CALL
CPPU_ENV_uno_initEnvironment
(
uno_Environment
*
Env
)
SAL_THROW_EXTERN_C
();
#endif
/** Gets a specific environment. If the specified environment does not exist, then a default one
is created and registered. The environment revokes itself on last release() call.
...
...
@@ -375,12 +381,6 @@ CPPU_DLLPUBLIC void SAL_CALL uno_Environment_enter(uno_Environment * pEnv)
CPPU_DLLPUBLIC
int
SAL_CALL
uno_Environment_isValid
(
uno_Environment
*
pEnv
,
rtl_uString
**
pReason
)
SAL_THROW_EXTERN_C
();
#ifdef IOS
/* We link statically on iOS and have just one kind of environment */
void
SAL_CALL
gcc3_uno_initEnvironment
(
uno_Environment
*
pCppEnv
)
SAL_THROW_EXTERN_C
();
#endif
#ifdef __cplusplus
}
#endif
...
...
cppu/inc/uno/mapping.h
Dosyayı görüntüle @
c0ab229d
...
...
@@ -195,6 +195,15 @@ typedef void (SAL_CALL * uno_ext_getMappingFunc)(
struct
_uno_Environment
*
pFrom
,
struct
_uno_Environment
*
pTo
);
#ifdef DISABLE_DYNLOADING
/* Static linking, this is the uno_ext_getMapping function in the C++/UNO bridge */
void
SAL_CALL
CPPU_ENV_uno_ext_getMapping
(
struct
_uno_Mapping
**
ppMapping
,
struct
_uno_Environment
*
pFrom
,
struct
_uno_Environment
*
pTo
)
SAL_THROW_EXTERN_C
();
#endif
#ifdef __cplusplus
}
#endif
...
...
cppu/source/AffineBridge/AffineBridge.cxx
Dosyayı görüntüle @
c0ab229d
...
...
@@ -348,6 +348,13 @@ int AffineBridge::v_isValid(rtl::OUString * pReason)
return
result
;
}
#ifdef DISABLE_DYNLOADING
#define uno_initEnvironment affine_uno_uno_initEnvironment
#define uno_ext_getMapping affine_uno_uno_ext_getMapping
#endif
extern
"C"
void
SAL_DLLPUBLIC_EXPORT
SAL_CALL
uno_initEnvironment
(
uno_Environment
*
pEnv
)
SAL_THROW_EXTERN_C
()
{
...
...
cppu/source/LogBridge/LogBridge.cxx
Dosyayı görüntüle @
c0ab229d
...
...
@@ -262,6 +262,13 @@ void LogProbe(
}
}
#ifdef DISABLE_DYNLOADING
#define uno_initEnvironment log_uno_uno_initEnvironment
#define uno_ext_getMapping log_uno_uno_ext_getMapping
#endif
extern
"C"
void
SAL_DLLPUBLIC_EXPORT
SAL_CALL
uno_initEnvironment
(
uno_Environment
*
pEnv
)
SAL_THROW_EXTERN_C
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment