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
1a4cbf9f
Kaydet (Commit)
1a4cbf9f
authored
Mar 29, 2012
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More static lib name mappings. Yeah, need to do a gperf thing some night
üst
e362ccba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
16 deletions
+13
-16
shlib.cxx
cppuhelper/source/shlib.cxx
+13
-16
No files found.
cppuhelper/source/shlib.cxx
Dosyayı görüntüle @
1a4cbf9f
...
@@ -459,22 +459,13 @@ Reference< XInterface > invokeComponentFactory(
...
@@ -459,22 +459,13 @@ Reference< XInterface > invokeComponentFactory(
#ifdef DISABLE_DYNLOADING
#ifdef DISABLE_DYNLOADING
extern
"C"
extern
"C"
{
{
// In stoc/source/bootstrap/services.cxx.
extern
void
*
bootstrap_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
extern
void
*
configmgr_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
// Sure, some public header would be a better place for this. But
extern
void
*
fwk_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
// it can't be in some stoc header as that hasn't been built and
extern
void
*
i18npool_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
// delivered yet when cppuhelper is built.
extern
void
*
sc_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
extern
void
*
ucb_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
extern
void
*
bootstrap_component_getFactory
(
extern
void
*
ucpfile_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
// More of them, in order of discovery. This is a temporary way to handle this..
extern
void
*
ucb_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
extern
void
*
configmgr_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
extern
void
*
ucpfile_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
);
}
}
#endif
#endif
...
@@ -540,6 +531,12 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory(
...
@@ -540,6 +531,12 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory(
pSym
=
(
oslGenericFunction
)
configmgr_component_getFactory
;
pSym
=
(
oslGenericFunction
)
configmgr_component_getFactory
;
else
if
(
rLibName
.
equals
(
OUSTR
(
"libucpfile1.a"
))
)
else
if
(
rLibName
.
equals
(
OUSTR
(
"libucpfile1.a"
))
)
pSym
=
(
oslGenericFunction
)
ucpfile_component_getFactory
;
pSym
=
(
oslGenericFunction
)
ucpfile_component_getFactory
;
else
if
(
rLibName
.
equals
(
OUSTR
(
"libsclo.a"
))
)
pSym
=
(
oslGenericFunction
)
sc_component_getFactory
;
else
if
(
rLibName
.
equals
(
OUSTR
(
"libfwklo.a"
))
)
pSym
=
(
oslGenericFunction
)
fwk_component_getFactory
;
else
if
(
rLibName
.
equals
(
OUSTR
(
"i18npool.uno.a"
))
)
pSym
=
(
oslGenericFunction
)
i18npool_component_getFactory
;
else
else
{
{
#if OSL_DEBUG_LEVEL > 1
#if OSL_DEBUG_LEVEL > 1
...
...
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