Subversion Repositories simple_log_event

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
// ************************************************************************ //
2
// WARNUNG                                                                    
3
// -------                                                                    
4
// Diese Datei wird von dem Typbibliotheks-Importer oder dem Typbibliothekseditor 
5
// erzeugt. Außer Syntaxfehlern analysiert der Editor an der Datei vorgenommene 
6
// Änderungen. Wenn Sie aber Änderungen mit dem Editor vornehmen, wird diese  
7
// Datei neu erzeugt und Kommentare oder Formatänderungen gehen verloren.     
8
// ************************************************************************ //
9
// Datei erzeugt am 29.04.2020 21:29:52 (- $Rev: 12980 $, 7765620).
10
 
11
[
12
  uuid(D7654BA7-41D0-4FF9-8543-C3A4DA936856), 
13
  version(1.0), 
14
  helpstring("ViaThinkSoftSimpleLogEvent Library")
15
 
16
]
17
library ViaThinkSoftSimpleLogEvent
18
{
19
 
20
  importlib("stdole2.tlb");
21
 
22
  interface IViaThinkSoftSimpleEventLog;
23
  coclass ViaThinkSoftSimpleEventLog;
24
 
25
 
26
  [
27
    uuid(4094657E-8199-460F-A3DD-5BB63B6B0F65), 
28
    version(1.0), 
29
    helpstring("Dispatch interface for ViaThinkSoftSimpleEventLog Object"), 
30
    dual, 
31
    oleautomation
32
  ]
33
  interface IViaThinkSoftSimpleEventLog: IDispatch
34
  {
35
    [id(0x000000C9)]
36
    HRESULT _stdcall LogEvent([in] long EventType, [in] BSTR LogMsg);
37
  };
38
 
39
  [
40
    uuid(E4270053-A217-498C-B395-9EF33187E8C2), 
41
    version(1.0), 
42
    helpstring("ViaThinkSoftSimpleEventLog Object")
43
  ]
44
  coclass ViaThinkSoftSimpleEventLog
45
  {
46
    [default] interface IViaThinkSoftSimpleEventLog;
47
  };
48
 
49
};