Ignore:
Timestamp:
Aug 24, 2007, 11:14:46 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

フルコンパイルでのミスあぶり出し。註:修正は全て@300や@301以前に行われた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/objidl.sbp

    r300 r303  
    1313/* interface IMarshal */
    1414/* [uuid][object][local] */
    15 
    16 TypeDef LPMARSHAL = /* [unique] */ *IMarshal
    1715
    1816Dim IID_IMarshal = [&h00000003, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     
    5149End Interface
    5250
    53 ' IMarshal2
     51/* interface IMarshal2 */
     52/* [uuid][object][local] */
     53
     54Dim IID_IMarshal2 = [&h000001Cf, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     55Interface IMarshal2
     56    Inherits IMarshal
     57End Interface
     58
     59/* interface IMalloc */
     60/* [uuid][object][local] */
    5461
    5562Dim IID_IMalloc = [&h00000002, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     
    6976End Interface
    7077
    71 ' IMallocSpy
     78/* interface IMallocSpy */
     79/* [uuid][object][local] */
     80
     81Dim IID_IMallocSpy = [&h0000001d, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     82Interface IMallocSpy
     83    Inherits IUnknown
     84
     85    Function PreAlloc(
     86        /* [in] */ cbRequest As SIZE_T) As HRESULT
     87    Function PostAlloc(
     88        /* [in] */ pActual As VoidPtr) As VoidPtr
     89    Function PreFree(
     90        /* [in] */ pRequest As VoidPtr,
     91        /* [in] */ fSpyed As BOOL) As VoidPtr
     92    Sub PostFree(
     93        /* [in] */ fSpyed As BOOL)
     94    Function PreRealloc(
     95        /* [in] */ pRequest As VoidPtr,
     96        /* [in] */ cbRequestt As SIZE_T,
     97        /* [out] */ ByRef ppNewRequest As VoidPtr,
     98        /* [in] */ fSpyed As BOOL) As HRESULT
     99    Function PostRealloc(
     100        /* [in] */ pActual As VoidPtr,
     101        /* [in] */ fSpyed As BOOL) As VoidPtr
     102    Function PreGetSize(
     103        /* [in] */ pRequest As VoidPtr,
     104        /* [in] */ fSpyed As BOOL) As VoidPtr
     105    Function PostGetSize(
     106        /* [in] */ cbActual As SIZE_T,
     107        /* [in] */ fSpyed As BOOL) As HRESULT
     108    Function PreDidAlloc(
     109    /* [in] */ pRequest As VoidPtr,
     110    /* [in] */ fSpyed As BOOL) As VoidPtr
     111    Function PostDidAlloc(
     112    /* [in] */ pRequest As VoidPtr,
     113    /* [in] */ fSpyed As BOOL,
     114    /* [in] */ fActual As Long) As Long
     115    Sub PreHeapMinimize()
     116    Sub PostHeapMinimize()
     117End Interface
    72118
    73119' IStdMarshalInfo
     
    77123Type MULTI_QI
    78124    pIID As * /*Const*/ IID
    79     pItf As *IUnknown
     125    pItf As IUnknown
    80126    hr As HRESULT
    81127End Type
    82128
    83129Dim IID_IMultiQI = [&h00000020, &h0000, &h0000, [&hC0, &h00, &h00, &h00, &h00, &h00, &h00, &h46]] As IID
    84 
    85130Interface IMultiQI
    86131    Inherits IUnknown
     
    95140' IInternalUnknown
    96141
    97 ' IEnumUnknown
     142/* interface IEnumUnknown */
     143/* [unique][uuid][object] */
     144
     145Dim IID_IEnumUnknown = [&h00000100, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     146Interface IEnumUnknown
     147    Inherits IUnknown
     148
     149    /* [local] */ Function Next_(
     150        /* [in] */ celt As DWord,
     151        /* [out] */ rgelt As *IUnknown,
     152        /* [out] */ ByRef celtFetched As DWord) As HRESULT
     153    Function Skip(
     154        /* [in] */ celt As DWord) As HRESULT
     155    Function Reset() As HRESULT
     156    Function Clone(
     157        /* [out] */ ByRef enumUnk As IEnumUnknown) As HRESULT
     158End Interface
     159
     160/* interface IBindCtx */
     161/* [unique][uuid][object] */
    98162
    99163Type BIND_OPTS
     
    146210        /* [unique][in] */ punk As IUnknown) As HRESULT
    147211    Function ReleaseBoundObjects() As HRESULT
    148     /* [local] */ Function SetBindOptions(
     212    /* [local] */ Function SetBindOptions(
    149213        /* [in] */ ByRef bindopts As BIND_OPTS) As HRESULT
    150     /* [local] */ Function GetBindOptions(
     214    /* [local] */ Function GetBindOptions(
    151215        /* [out][in] */ ByRef bindopts As BIND_OPTS) As HRESULT
    152216    Function GetRunningObjectTable(
     
    159223        /* [out] */ ByRef unk As IUnknown) As HRESULT
    160224    Function EnumObjectParam(
    161         /* [out] */ ByRef enumstr As IEnumString) As HRESULT
     225        /* [out] */ ByRef enumstr As IEnumString) As HRESULT
    162226    Function RevokeObjectParam(
    163227        /* [in] */ pszKey As LPOLESTR) As HRESULT
    164228End Interface
    165229
    166 ' IEnumMoniker
    167 
     230/* interface IEnumMoniker */
     231/* [unique][uuid][object] */
     232
     233Dim IID_IEnumMoniker = [&h00000102, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     234Interface IEnumMoniker
     235    Inherits IUnknown
     236    /* [local] */ Function Next_(
     237        /* [in] */ celt As DWord,
     238        /* [length_is][size_is][out] */ rgelt As *IMoniker,
     239        /* [out] */ ByRef celtFetched As DWord) As HRESULT
     240    Function Skip(
     241        /* [in] */ celt As DWord) As HRESULT
     242    Function Reset() As HRESULT
     243    Function Clone(
     244        /* [out] */ enumMon As IEnumMoniker) As HRESULT
     245End Interface
     246
     247/* interface IRunningObjectTable */
     248/* [uuid][object] */
     249
     250Dim IID_IRunningObjectTable = [&h00000010, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    168251Interface IRunningObjectTable
    169252    Inherits IUnknown
     253
     254    Function Register(
     255        /* [in] */ grfFlags As DWord,
     256        /* [unique][in] */ unkObject As IUnknown,
     257        /* [unique][in] */ mkObjectName As IMoniker,
     258        /* [out] */ ByRef dwRegister As DWord) As HRESULT
     259    Function Revoke(
     260        /* [in] */ dwRegister As DWord) As HRESULT
     261    Function IsRunning(
     262        /* [unique][in] */ mkObjectName As IMoniker) As HRESULT
     263    Function GetObject(
     264        /* [unique][in] */ mkObjectName As IMoniker,
     265        /* [out] */ ByRef unkObject As IUnknown) As HRESULT
     266    Function NoteChangeTime(
     267        /* [in] */ dwRegister As DWord,
     268        /* [in] */ ByRef filetime As FILETIME) As HRESULT
     269    Function GetTimeOfLastChange(
     270        /* [unique][in] */ mkObjectName As IMoniker,
     271        /* [in] */ ByRef filetime As FILETIME) As HRESULT
     272    Function EnumRunning(
     273        /* [out] */ ByRef enumMoniker As IEnumMoniker) As HRESULT
    170274End Interface
    171275
     
    186290    Function Load(
    187291        /* [unique][in] */ Stm As IStream) As HRESULT
    188 
    189292    Function Save(
    190293        /* [unique][in] */ Stm As IStream,
    191294        /* [in] */ fClearDirty As BOOL) As HRESULT
    192 
    193295    Function GetSizeMax(
    194296        /* [out] */ ByRef cbSize As ULARGE_INTEGER) As HRESULT
    195297End Interface
    196298
     299/* interface IMoniker */
     300/* [unique][uuid][object] */
     301
     302Const Enum MKSYS
     303    MKSYS_NONE = 0
     304    MKSYS_GENERICCOMPOSITE = 1
     305    MKSYS_FILEMONIKER = 2
     306    MKSYS_ANTIMONIKER = 3
     307    MKSYS_ITEMMONIKER = 4
     308    MKSYS_POINTERMONIKER = 5
     309    MKSYS_CLASSMONIKER = 7
     310    MKSYS_OBJREFMONIKER = 8
     311    MKSYS_SESSIONMONIKER = 9
     312    MKSYS_LUAMONIKER = 10
     313End Enum
     314
     315/* [v1_enum] */ Const Enum MKREDUCE
     316    MKRREDUCE_ONE = (3 << 16)
     317    MKRREDUCE_TOUSER = (2 << 16)
     318    MKRREDUCE_THROUGHUSER = (1 << 16)
     319    MKRREDUCE_ALL = 0
     320End Enum
     321
     322Dim IID_IMoniker = [&h0000000f, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    197323Interface IMoniker
    198324    Inherits IPersistStream
    199 End Interface
     325
     326    /* [local] */ Function BindToObject(
     327        /* [unique][in] */ bc As IBindCtx,
     328        /* [unique][in] */ mkToLeft As IMoniker,
     329        /* [in] */ ByRef riidResult As IID,
     330        /* [iid_is][out] */ ByRef Result As Any) As HRESULT
     331    /* [local] */ Function BindToStorage(
     332        /* [unique][in] */ bc As IBindCtx,
     333        /* [unique][in] */ mkToLeft As IMoniker,
     334        /* [in] */ ByRef riid As IID,
     335        /* [iid_is][out] */ ByRef Obj As Any) As HRESULT
     336    Function Reduce(
     337        /* [unique][in] */ bc As IBindCtx,
     338        /* [in] */ dwReduceHowFar As DWord,
     339        /* [unique][out][in] */ ByRef mkToLeft As IMoniker,
     340        /* [out] */ ByRef mkReduced As IMoniker) As HRESULT
     341    Function ComposeWith(
     342        /* [unique][in] */ ByRef mkRight As IMoniker,
     343        /* [in] */ fOnlyIfNotGeneric As BOOL,
     344        /* [out] */ ByRef mkComposite As IMoniker) As HRESULT
     345    Function Enum_(
     346        /* [in] */ fForward As BOOL,
     347        /* [out] */ ByRef enumMoniker As IEnumMoniker) As HRESULT
     348    Function IsEqual(
     349        /* [unique][in] */ mkOtherMoniker As IMoniker) As HRESULT
     350    Function Hash(
     351        /* [out] */ ByRef dwHash As DWord) As HRESULT
     352    Function IsRunning(
     353        /* [unique][in] */ bc As IBindCtx,
     354        /* [unique][in] */ mkToLeft As IMoniker,
     355        /* [unique][in] */ mkNewlyRunning As IMoniker) As HRESULT
     356    Function GetTimeOfLastChange(
     357        /* [unique][in] */ bc As IBindCtx,
     358        /* [unique][in] */ mkToLeft As IMoniker,
     359        /* [out] */ ByRef FileTime As FILETIME) As HRESULT
     360    Function Inverse(
     361        /* [out] */ ByRef mk As IMoniker) As HRESULT
     362    Function CommonPrefixWith(
     363        /* [unique][in] */ mkOther As IMoniker,
     364        /* [out] */ ByRef mkPrefix As IMoniker) As HRESULT
     365    Function RelativePathTo(
     366        /* [unique][in] */ mkOther As IMoniker,
     367        /* [out] */ ByRef mkRelPath As IMoniker) As HRESULT
     368    Function GetDisplayName(
     369        /* [unique][in] */ bc As IBindCtx,
     370        /* [unique][in] */ mkToLeft As IMoniker,
     371        /* [out] */ ByRef pszDisplayName As LPOLESTR) As HRESULT
     372    Function ParseDisplayName(
     373        /* [unique][in] */ bc As IBindCtx,
     374        /* [unique][in] */ mkToLeft As IMoniker,
     375        /* [in] */  pszDisplayName As LPOLESTR,
     376        /* [out] */ ByRef chEaten As DWord,
     377        /* [out] */ ByRef mkOut As IMoniker) As HRESULT
     378    Function IsSystemMoniker(
     379        /* [out] */ ByRef dwMksys As DWord) As HRESULT
     380End Interface
     381
     382/* interface IEnumString */
     383/* [unique][uuid][object] */
    200384
    201385Dim IID_IEnumString = [&h00000101, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     
    214398End Interface
    215399
     400/* interface ISequentialStream */
     401/* [unique][uuid][object] */
     402
    216403Dim IID_ISequentialStream = [&h0c733a30, &h2a1c, &h11ce, [&had, &he5, &h00, &haa, &h00, &h44, &h77, &h3d]] As IID
    217404Interface ISequentialStream
    218405    Inherits IUnknown
    219406
    220     Function Read(pv As VoidPtr, cb As DWord, ByRef cbRead As DWord) As HRESULT
    221     Function Write(pv As VoidPtr, cb As DWord, ByRef cbWritten As DWord) As HRESULT
    222 End Interface
     407    Function Read(
     408        /* [length_is][size_is][out] */ pv As VoidPtr,
     409        /* [in] */ cb As DWord,
     410        /* [out] */ ByRef cbRead As DWord) As HRESULT
     411    Function Write(
     412        /* [size_is][in] */ pv As VoidPtr,
     413        /* [in] */ cb As DWord,
     414        /* [out] */ ByRef cbWritten As DWord) As HRESULT
     415End Interface
     416
     417/* interface IStream */
     418/* [unique][uuid][object] */
    223419
    224420Type STATSTG
     
    259455    Inherits ISequentialStream
    260456
    261     Function Seek(dlibMove As LARGE_INTEGER, dwOrigin As DWord, plibNewPosition As *ULARGE_INTEGER) As HRESULT
    262     Function SetSize(libNewSize As ULARGE_INTEGER) As HRESULT
    263     Function CopyTo(pstm As *IStream, cb As ULARGE_INTEGER, pcbRead As *ULARGE_INTEGER, pcbWritten As *ULARGE_INTEGER) As HRESULT
    264     Function Commit(grfCommitFlags As DWord) As HRESULT
     457    /* [local] */ Function Seek(
     458        /* [in] */ dlibMove As LARGE_INTEGER,
     459        /* [in] */ dwOrigin As DWord,
     460        /* [out] */ plibNewPosition As *ULARGE_INTEGER) As HRESULT
     461    Function SetSize(
     462        /* [in] */ libNewSize As ULARGE_INTEGER) As HRESULT
     463    /* [local] */ Function CopyTo(
     464        /* [unique][in] */ stm As IStream,
     465        /* [in] */ cb As ULARGE_INTEGER,
     466        /* [out] */ pcbRead As *ULARGE_INTEGER,
     467        /* [out] */ pcbWritten As *ULARGE_INTEGER) As HRESULT
     468    Function Commit(
     469        /* [in] */ grfCommitFlags As DWord) As HRESULT
    265470    Function Revert() As HRESULT
    266     Function LockRegion(libOffset As ULARGE_INTEGER, cb As ULARGE_INTEGER, dwLockType As DWord) As HRESULT
    267     Function UnlockRegion(libOffset As ULARGE_INTEGER, cb As ULARGE_INTEGER, dwLockType As DWord) As HRESULT
    268     Function Stat(pstatstg As *STATSTG, grfStatFlag As DWord) As HRESULT
    269     Function Clone(ByRef stm As IStream) As HRESULT
    270 End Interface
     471    Function LockRegion(
     472        /* [in] */ libOffset As ULARGE_INTEGER,
     473        /* [in] */ cb As ULARGE_INTEGER,
     474        /* [in] */ dwLockType As DWord) As HRESULT
     475    Function UnlockRegion(
     476        /* [in] */ libOffset As ULARGE_INTEGER,
     477        /* [in] */ cb As ULARGE_INTEGER,
     478        /* [in] */ dwLockType As DWord) As HRESULT
     479    Function Stat(
     480        /* [out] */ pstatstg As *STATSTG,
     481        /* [in] */ grfStatFlag As DWord) As HRESULT
     482    Function Clone(
     483        /* [out] */ ByRef stm As IStream) As HRESULT
     484End Interface
     485
    271486TypeDef LPSTREAM = *IStream
    272487
     488/* interface IEnumSTATSTG */
     489/* [unique][uuid][object] */
     490
     491Dim IID_IEnumSTATSTG = [&h0000000d, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    273492Interface IEnumSTATSTG
    274493    Inherits IUnknown
    275 End Interface
    276 
    277 #ifndef __IStorage_INTERFACE_DEFINED__
    278 #define __IStorage_INTERFACE_DEFINED__
     494
     495    /* [local] */ Function Next_(
     496        /* [in] */ celt As DWord,
     497        /* [length_is][size_is][out] */ rgelt As *STATSTG,
     498        /* [out] */ ByRef celtFetched As DWord) As HRESULT
     499    Function Skip(
     500        /* [in] */ celt As DWord) As HRESULT
     501    Function Reset() As HRESULT
     502    Function Clone(
     503        /* [out] */ ByRef enumStat As IEnumSTATSTG) As HRESULT
     504End Interface
    279505
    280506/* interface IStorage */
     
    294520
    295521Dim IID_IStorage = [&h0000000b, &h0000, &h0000, [&hC0, &h00, &h00, &h00, &h00, &h00, &h00, &h46]] As IID
    296 
    297522Interface IStorage
    298523    Inherits IUnknown
     
    361586End Interface
    362587
    363 #endif  /* __IStorage_INTERFACE_DEFINED__ */
    364 
     588/* interface IPersistFile */
     589/* [unique][uuid][object] */
     590
     591Dim IID_IPersistFile = [&h0000010b, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    365592Interface IPersistFile
    366593    Inherits IPersist
     
    379606End Interface
    380607
    381 
    382 ' IPersistStrage
    383 
     608/* interface IPersistStorage */
     609/* [unique][uuid][object] */
     610
     611Dim IID_IPersistStorage = [&h0000010a, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     612Interface IPersistStorage
     613    Inherits IPersist
     614
     615    Function IsDirty() As HRESULT
     616    Function InitNew(
     617        /* [unique][in] */ Stg As IStorage) As HRESULT
     618    Function Load(
     619        /* [unique][in] */ Stg As IStorage) As HRESULT
     620    Function Save(
     621        /* [unique][in] */ StgSave As IStorage,
     622        /* [in] */ fSameAsLoad As BOOL) As HRESULT
     623    Function SaveCompleted(
     624        /* [unique][in] */ StgNew As IStorage) As HRESULT
     625    Function HandsOffStorage() As HRESULT
     626End Interface
     627
     628/* interface ILockBytes */
     629/* [unique][uuid][object] */
     630
     631Dim IID_ILockBytes = [&h0000000a, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    384632Interface ILockBytes
    385633    Inherits IUnknown
     634
     635    /* [local] */ Function ReadAt(
     636        /* [in] */ ulOffset As ULARGE_INTEGER,
     637        /* [length_is][size_is][out] */ pv As VoidPtr,
     638        /* [in] */ cb As DWord,
     639        /* [out] */ ByRef cbRead As DWord) As HRESULT
     640    /* [local] */ Function WriteAt(
     641        /* [in] */ ulOffset As ULARGE_INTEGER,
     642        /* [size_is][in] */ pv As VoidPtr,
     643        /* [in] */ cb As DWord,
     644        /* [out] */ ByRef cbWritten As DWord) As HRESULT
     645    Function Flush() As HRESULT
     646    Function SetSize(
     647    /* [in] */ cb As ULARGE_INTEGER) As HRESULT
     648    Function LockRegion(
     649        /* [in] */ libOffset As ULARGE_INTEGER,
     650        /* [in] */ cb As ULARGE_INTEGER,
     651        /* [in] */ dwLockType As DWord) As HRESULT
     652    Function UnlockRegion(
     653        /* [in] */ libOffset As ULARGE_INTEGER,
     654        /* [in] */ cb As ULARGE_INTEGER,
     655        /* [in] */ dwLockType As DWord) As HRESULT
     656    Function Stat(
     657        /* [out] */ ByRef statstg As STATSTG,
     658        /* [in] */ grfStatFlag As DWord) As HRESULT
    386659End Interface
    387660
     
    415688End Interface
    416689
    417 ' IRootStorage
     690/* interface IRootStorage */
     691/* [unique][uuid][object] */
     692
     693Dim IID_IRootStorage = [&h00000012, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
     694Interface IRootStorage
     695    Inherits IUnknown
     696
     697    Function SwitchToFile(
     698        /* [in] */ pszFile As LPOLESTR) As HRESULT
     699End Interface
     700
     701/* interface IAdviseSink */
     702/* [unique][async_uuid][uuid][object] */
    418703
    419704Enum /*[transmit_as(long)]*/ TYMED
     
    428713End Enum
    429714
    430 Type STGMEDIUM
     715Type RemSTGMEDIUM
     716    tymed As DWord
     717    dwHandleType As DWord
     718    pData As DWord
     719    pUnkForRelease As DWord
     720    cbData As DWord
     721    data[ELM(1)] As Byte
     722End Type
     723
     724/* [wire_marshal] */ Type STGMEDIUM
    431725    tymed As DWord
    432726    data As VoidPtr
     
    445739End Type
    446740
     741Type GDI_OBJECT
     742'   ObjectType As DWord
     743'   /* [switch_type] */ u As Union
     744'       hBitmap As wireHBITMAP
     745'       hPalette As wireHPALETTE
     746'       hGeneric As wireHGLOBAL
     747'   End Union
     748End Type
     749
     750Type userSTGMEDIUM
     751'   tymed As DWord
     752'   /* [switch_type] */ u As Union
     753'       /* Empty union arm */
     754'       hMetaFilePict As wireHMETAFILEPICT
     755'       hHEnhMetaFile As wireHENHMETAFILE
     756'       hGdiHandle As *GDI_OBJECT
     757'       hGlobal As wireHGLOBAL
     758'       lpszFileName As LPOLESTR
     759'       pstm As *BYTE_BLOB
     760'       pstg As BYTE_BLOB
     761'   End Union
     762'   pUnkForRelease As IUnknown
     763End Type
     764
     765TypeDef wireSTGMEDIUM = /* [unique] */ *userSTGMEDIUM
     766TypeDef ASYNC_STGMEDIUM = /* [unique] */ *userSTGMEDIUM
     767TypeDef wireSTGMEDIUM = /* [wire_marshal] */ STGMEDIUM
     768
     769Type userFLAG_STGMEDIUM
     770'   ContextFlags As Long
     771'   fPassOwnership As Long
     772'   Stgmed As userSTGMEDIUM
     773End Type
     774
     775TypeDef wireFLAG_STGMEDIUM = /* [unique] */ *userFLAG_STGMEDIUM
     776
     777Type /* [wire_marshal] */ FLAG_STGMEDIUM
     778    ContextFlags As Long
     779    fPassOwnership As Long
     780    Stgmed As STGMEDIUM
     781End Type
     782
     783Dim IID_IAdviseSink = [&h0000010f, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    447784Interface IAdviseSink
    448785    Inherits IUnknown
     786
     787    /* [local] */ Sub OnDataChange(
     788        /* [unique][in] */ ByRef Formatetc As FORMATETC,
     789        /* [unique][in] */ ByRef Stgmed As STGMEDIUM)
     790    /* [local] */ Sub OnViewChange(
     791        /* [in] */ dwAspect As DWord,
     792        /* [in] */ lindex As Long)
     793    /* [local] */ Sub OnRename(
     794        /* [in] */ mk As IMoniker)
     795    /* [local] */ Sub OnSave()
     796    /* [local] */ Sub OnClose()
    449797End Interface
    450798
     
    455803' AsyncIAdviseSink2
    456804
     805Dim IID_IDataObject = [&h0000010e, 0, 0, [&hC0, 0, 0, 0, 0, 0, 0, &h46]] As IID
    457806Interface IDataObject
    458807    Inherits IUnknown
     
    524873
    525874Dim IID_IMessageFilter = [&h00000016, &h0000, &h0000, [&hC0, &h00, &h00, &h00, &h00, &h00, &h00, &h46]] As IID
    526 
    527875Interface IMessageFilter
    528876    Inherits IUnknown
     
    533881        /* [in] */ dwTickCount As DWord,
    534882        /* [in] */ lpInterfaceInfo As LPINTERFACEINFO) As DWord
    535 
    536883    Function RetryRejectedCall(
    537884        /* [in] */ htaskCallee As HTASK,
    538885        /* [in] */ dwTickCount As DWord,
    539886        /* [in] */ dwRejectType As DWord) As DWord
    540 
    541887    Function MessagePending(
    542888        /* [in] */ htaskCallee As HTASK,
     
    653999' IInitializeSpy
    6541000
    655 #endif'_INC_OBJIDL
     1001#endif '_INC_OBJIDL
Note: See TracChangeset for help on using the changeset viewer.