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
11e133f5
Kaydet (Commit)
11e133f5
authored
May 22, 2003
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS uno4 (1.3.2); FILE ADDED
2003/05/08 06:54:54 jl 1.3.2.1: *** empty log message ***
üst
7ca168e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
EvtListener.cpp
...est/ole/EventListenerSample/EventListener/EvtListener.cpp
+20
-0
EvtListener.h
.../test/ole/EventListenerSample/EventListener/EvtListener.h
+35
-0
No files found.
extensions/test/ole/EventListenerSample/EventListener/EvtListener.cpp
0 → 100644
Dosyayı görüntüle @
11e133f5
// EvtListener.cpp : Implementierung von CEvtListener
#include "stdafx.h"
#include "EventListener.h"
#include "EvtListener.h"
/////////////////////////////////////////////////////////////////////////////
// CEvtListener
STDMETHODIMP
CEvtListener
::
disposing
(
IDispatch
*
source
)
{
::
MessageBox
(
NULL
,
_T
(
"XEventListener::disposing"
),
_T
(
"EventListener.EvtListener component"
),
MB_OK
);
return
S_OK
;
}
CEvtListener
::~
CEvtListener
()
{
}
\ No newline at end of file
extensions/test/ole/EventListenerSample/EventListener/EvtListener.h
0 → 100644
Dosyayı görüntüle @
11e133f5
// EvtListener.h : Deklaration von CEvtListener
#ifndef __EVTLISTENER_H_
#define __EVTLISTENER_H_
#include "resource.h" // Hauptsymbole
/////////////////////////////////////////////////////////////////////////////
// CEvtListener
class
ATL_NO_VTABLE
CEvtListener
:
public
CComObjectRootEx
<
CComSingleThreadModel
>
,
public
CComCoClass
<
CEvtListener
,
&
CLSID_EvtListener
>
,
public
IDispatchImpl
<
IEvtListener
,
&
IID_IEvtListener
,
&
LIBID_EVENTLISTENERLib
>
{
public
:
CEvtListener
()
{
}
~
CEvtListener
();
DECLARE_REGISTRY_RESOURCEID
(
IDR_EVTLISTENER
)
DECLARE_PROTECT_FINAL_CONSTRUCT
()
BEGIN_COM_MAP
(
CEvtListener
)
COM_INTERFACE_ENTRY
(
IEvtListener
)
COM_INTERFACE_ENTRY
(
IDispatch
)
END_COM_MAP
()
// IEvtListener
public
:
STDMETHOD
(
disposing
)(
IDispatch
*
source
);
};
#endif //__EVTLISTENER_H_
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