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
d2ab706b
Kaydet (Commit)
d2ab706b
authored
Eyl 03, 2001
tarafından
Hennes Rohling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#88338# New function osl_getModuleURLFromAddress()
üst
32ae92a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
module.h
sal/inc/osl/module.h
+10
-2
module.c
sal/osl/w32/module.c
+3
-3
No files found.
sal/inc/osl/module.h
Dosyayı görüntüle @
d2ab706b
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: module.h,v $
*
* $Revision: 1.
6
$
* $Revision: 1.
7
$
*
* last change: $Author:
kr $ $Date: 2001-05-14 09:24:20
$
* last change: $Author:
hro $ $Date: 2001-09-03 10:47:34
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -122,6 +122,14 @@ void SAL_CALL osl_unloadModule(oslModule Module);
*/
void
*
SAL_CALL
osl_getSymbol
(
oslModule
Module
,
rtl_uString
*
strSymbolName
);
/** Lookup URL of module which is mapped at the specified address
@param pv specifies an address in the process memory space
@param pustrURL receives the URL of the module that is mapped at pv
@return sal_True on success, sal_False if no module can be found at the specified address
*/
sal_Bool
SAL_CALL
osl_getModuleURLFromAddress
(
void
*
pv
,
rtl_uString
**
pustrURL
);
#ifdef __cplusplus
}
#endif
...
...
sal/osl/w32/module.c
Dosyayı görüntüle @
d2ab706b
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: module.c,v $
*
* $Revision: 1.
8
$
* $Revision: 1.
9
$
*
* last change: $Author: hro $ $Date: 2001-09-03
09:19:56
$
* last change: $Author: hro $ $Date: 2001-09-03
10:48:13
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -305,7 +305,7 @@ static sal_Bool SAL_CALL _osl_addressGetModuleURL_NT( void *pv, rtl_uString **pu
/* Dispatcher for osl_osl_addressGetModuleURL */
/*****************************************************************************/
sal_Bool
SAL_CALL
osl_
addressGetModuleURL
(
void
*
pv
,
rtl_uString
**
pustrURL
)
sal_Bool
SAL_CALL
osl_
getModuleURLFromAddress
(
void
*
pv
,
rtl_uString
**
pustrURL
)
{
if
(
IS_NT
)
return
_osl_addressGetModuleURL_NT
(
pv
,
pustrURL
);
...
...
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