1 | #ifndef _INC_OBJIDL
|
---|
2 | #define _INC_OBJIDL
|
---|
3 |
|
---|
4 | TypeDef SNB = **OLECHAR
|
---|
5 |
|
---|
6 | Class ISequentialStream
|
---|
7 | Inherits IUnknown
|
---|
8 | Public
|
---|
9 | Abstract Function Read(pv As VoidPtr, cb As DWord, pcbRead As *DWord) As HRESULT
|
---|
10 | Abstract Function Write(pv As VoidPtr, cb As DWord, pcbWritten As *DWord) As HRESULT
|
---|
11 | End Class
|
---|
12 |
|
---|
13 | Class IStream
|
---|
14 | Inherits ISequentialStream
|
---|
15 | Public
|
---|
16 | Abstract Function Seek(dlibMove_LowPart As DWord, dlibMove_HighPart As Long, dwOrigin As DWord, plibNewPosition As *ULARGE_INTEGER) As HRESULT
|
---|
17 | Abstract Function SetSize(libNewSize_LowPart As DWord, libNewSize_HighPart As DWord) As HRESULT
|
---|
18 | Abstract Function CopyTo(pstm As *IStream, cb_LowPart As DWord, cb_HighPart As DWord, pcbRead As *ULARGE_INTEGER, pcbWritten As *ULARGE_INTEGER) As HRESULT
|
---|
19 | Abstract Function Commit(grfCommitFlags As DWord) As HRESULT
|
---|
20 | Abstract Function Revert() As HRESULT
|
---|
21 | Abstract Function LockRegion(libOffset_LowPart As DWord, libOffset_HighPart As DWord, cb_LowPart As DWord, cb_HighPart As DWord, dwLockType As DWord) As HRESULT
|
---|
22 | Abstract Function UnlockRegion(libOffset_LowPart As DWord, libOffset_HighPart As DWord, cb_LowPart As DWord, cb_HighPart As DWord, dwLockType As DWord) As HRESULT
|
---|
23 | Abstract Function Stat(pstatstg As *STATSTG, grfStatFlag As DWord) As HRESULT
|
---|
24 | Abstract Function Clone(ByRef ppstm As *IStream) As HRESULT
|
---|
25 | End Class
|
---|
26 | TypeDef LPSTREAM = *IStream
|
---|
27 |
|
---|
28 | Interface IMessageFilter
|
---|
29 | Inherits IUnknown
|
---|
30 | End Interface
|
---|
31 |
|
---|
32 | Interface IStorage
|
---|
33 | Inherits IUnknown
|
---|
34 | End Interface
|
---|
35 |
|
---|
36 | Interface ILockBytes
|
---|
37 | Inherits IUnknown
|
---|
38 | End Interface
|
---|
39 |
|
---|
40 | Interface IFillLockBytes
|
---|
41 | Inherits IUnknown
|
---|
42 | End Interface
|
---|
43 |
|
---|
44 | Interface IMoniker
|
---|
45 | Inherits IUnknown
|
---|
46 | End Interface
|
---|
47 |
|
---|
48 | Interface IBindCtx
|
---|
49 | Inherits IUnknown
|
---|
50 | End Interface
|
---|
51 |
|
---|
52 | Interface IRunningObjectTable
|
---|
53 | Inherits IUnknown
|
---|
54 | End Interface
|
---|
55 |
|
---|
56 | Interface IDataAdviseHolder
|
---|
57 | Inherits IUnknown
|
---|
58 | End Interface
|
---|
59 |
|
---|
60 | Class IMalloc
|
---|
61 | Inherits IUnknown
|
---|
62 | Public
|
---|
63 | Abstract Function Alloc(cb As SIZE_T) As VoidPtr
|
---|
64 | Abstract Function Realloc(pv As VoidPtr, cb As SIZE_T) As VoidPtr
|
---|
65 | Abstract Sub Free(pv As VoidPtr)
|
---|
66 | Abstract Function GetSize(pv As VoidPtr) As SIZE_T
|
---|
67 | Abstract Function DidAlloc(pv As VoidPtr) As Long
|
---|
68 | Abstract Sub HeapMinimize()
|
---|
69 | End Class
|
---|
70 |
|
---|
71 | Class BIND_OPTS
|
---|
72 | Public
|
---|
73 | cbStruct As DWord
|
---|
74 | grfFlags As DWord
|
---|
75 | grfMode As DWord
|
---|
76 | dwTickCountDeadline As DWord
|
---|
77 | End Class
|
---|
78 |
|
---|
79 | Class BIND_OPTS2
|
---|
80 | Inherits BIND_OPTS
|
---|
81 | Public
|
---|
82 | dwTrackFlags As DWord
|
---|
83 | dwClassContext As DWord
|
---|
84 | locale As LCID
|
---|
85 | pServerInfo As *COSERVERINFO
|
---|
86 | End Class
|
---|
87 |
|
---|
88 |
|
---|
89 | #endif'_INC_OBJIDL
|
---|