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
68beee83
Kaydet (Commit)
68beee83
authored
Kas 08, 2011
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix build against new npapi.h (yet more), blind fixes for aqua too
üst
5d1052ce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
sysplug.hxx
extensions/source/plugin/inc/plugin/aqua/sysplug.hxx
+6
-6
sysplug.hxx
extensions/source/plugin/inc/plugin/unx/sysplug.hxx
+3
-3
nppapi.cxx
extensions/source/plugin/unx/nppapi.cxx
+3
-3
No files found.
extensions/source/plugin/inc/plugin/aqua/sysplug.hxx
Dosyayı görüntüle @
68beee83
...
...
@@ -115,22 +115,22 @@ public:
virtual
NPError
NPP_DestroyStream
(
NPP
instance
,
NPStream
*
stream
,
NPError
reason
);
virtual
void
*
NPP_GetJavaClass
();
virtual
NPError
NPP_Initialize
();
virtual
NPError
NPP_New
(
NPMIMEType
pluginType
,
NPP
instance
,
uint16
mode
,
int16
argc
,
virtual
NPError
NPP_New
(
NPMIMEType
pluginType
,
NPP
instance
,
uint16
_t
mode
,
int16_t
argc
,
char
*
argn
[],
char
*
argv
[],
NPSavedData
*
saved
);
virtual
NPError
NPP_NewStream
(
NPP
instance
,
NPMIMEType
type
,
NPStream
*
stream
,
NPBool
seekable
,
uint16
*
stype
);
NPBool
seekable
,
uint16
_t
*
stype
);
virtual
void
NPP_Print
(
NPP
instance
,
NPPrint
*
platformPrint
);
virtual
NPError
NPP_SetWindow
(
NPP
instance
,
NPWindow
*
window
);
virtual
void
NPP_Shutdown
();
virtual
void
NPP_StreamAsFile
(
NPP
instance
,
NPStream
*
stream
,
const
char
*
fname
);
virtual
void
NPP_URLNotify
(
NPP
instance
,
const
char
*
url
,
NPReason
reason
,
void
*
notifyData
);
virtual
int32
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32
offset
,
int32
len
,
void
*
buffer
);
virtual
int32
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
);
virtual
int32
_t
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32
offset
,
int32
_t
len
,
void
*
buffer
);
virtual
int32
_t
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
);
virtual
NPError
NPP_GetValue
(
NPP
instance
,
NPPVariable
variable
,
void
*
ret_value
);
virtual
NPError
NPP_SetValue
(
NPP
instance
,
NPNVariable
variable
,
void
*
ret_value
);
virtual
int16
NPP_HandleEvent
(
NPP
instance
,
void
*
event
);
virtual
int16
_t
NPP_HandleEvent
(
NPP
instance
,
void
*
event
);
virtual
NPError
NPP_SetWindow
(
XPlugin_Impl
*
);
virtual
NPError
NPP_Destroy
(
XPlugin_Impl
*
,
NPSavedData
**
save
);
...
...
extensions/source/plugin/inc/plugin/unx/sysplug.hxx
Dosyayı görüntüle @
68beee83
...
...
@@ -70,9 +70,9 @@ public:
const
char
*
fname
);
virtual
void
NPP_URLNotify
(
NPP
instance
,
const
char
*
url
,
NPReason
reason
,
void
*
notifyData
);
virtual
int32
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32
offset
,
int32
len
,
void
*
buffer
);
virtual
int32
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
);
virtual
int32
_t
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32_t
offset
,
int32_t
len
,
void
*
buffer
);
virtual
int32
_t
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
);
virtual
char
*
NPP_GetMIMEDescription
();
virtual
NPError
NPP_GetValue
(
NPP
instance
,
NPPVariable
variable
,
void
*
value
);
virtual
NPError
NPP_SetValue
(
NPP
instance
,
NPNVariable
variable
,
...
...
extensions/source/plugin/unx/nppapi.cxx
Dosyayı görüntüle @
68beee83
...
...
@@ -554,7 +554,7 @@ void UnxPluginComm::NPP_URLNotify( NPP instance, const char* url, NPReason reaso
NULL
);
}
int32
UnxPluginComm
::
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32
offset
,
int32
len
,
void
*
buffer
)
int32
_t
UnxPluginComm
::
NPP_Write
(
NPP
instance
,
NPStream
*
stream
,
int32_t
offset
,
int32_t
len
,
void
*
buffer
)
{
GET_INSTANCE_RET
(
-
1
);
sal_uInt32
nFileID
=
GetStreamID
(
stream
);
...
...
@@ -577,7 +577,7 @@ int32 UnxPluginComm::NPP_Write( NPP instance, NPStream* stream, int32 offset, in
return
aRet
;
}
int32
UnxPluginComm
::
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
)
int32
_t
UnxPluginComm
::
NPP_WriteReady
(
NPP
instance
,
NPStream
*
stream
)
{
GET_INSTANCE_RET
(
-
1
);
sal_uInt32
nFileID
=
GetStreamID
(
stream
);
...
...
@@ -593,7 +593,7 @@ int32 UnxPluginComm::NPP_WriteReady( NPP instance, NPStream* stream )
if
(
!
pMes
)
return
0
;
int32
aRet
=
pMes
->
GetUINT32
();
int32
_t
aRet
=
pMes
->
GetUINT32
();
delete
pMes
;
return
aRet
;
...
...
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