1995-03-02 18:33:47 +01:00
|
|
|
name OLE2
|
1995-03-19 18:39:39 +01:00
|
|
|
id 15
|
1995-03-02 18:33:47 +01:00
|
|
|
|
Release 950430
Sat Apr 29 20:42:01 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
* [controls/static.c]
Fixed painting of SS_*FRAME controls.
* [if1632/callback.c]
Pass the window instance as DS to the 16-bit window procedure.
Rewrote Catch() and Throw() to make them work with multiple tasks.
* [loader/main.c]
New function MAIN_Init() to perform initializations before the
first task is started instead of doing them in InitApp().
Temporary hack to command-line parsing to load one program per
command-line argument, to make testing task-switching easier.
* [loader/*.c]
Reimplemented modules to use a Windows-compatible layout and to
allow multiple tasks and multiple module instances. Not really
finished yet.
* [loader/task.c] [misc/exec.c]
Reimplemented tasks to use a common address space, and implemented
preliminary task-switching capabilities.
* [memory/global.c]
Fixed bug in GlobalNext().
* [misc/main.c]
Updated the list of contributors. Let me know if I forgot someone.
* [miscemu/int21.c]
Use one DTA per task instead of a global one.
* [objects/bitblt.c]
Fixed bug in BitBlt() that could cause BadMatch errors.
* [tools/build.c]
Added new function type 'stub', that makes possible to export an
unimplemented function by name as well as by ordinal. This will
avoid loading errors for unimplemented functions.
Generate an in-memory module layout for built-in DLLs so that the
same code can be used for built-in and loaded modules.
Changed relay code to make it unnecessary to save the value of the
BP register.
* [windows/message.c]
Implemented multiple message queues and preliminary task-switching
capabilities. Inter-task SendMessage() calls are not implemented
yet and will probably cause crashes if used.
* [windows/property.c]
Reimplemented properties and allocate them on the USER heap.
* [windows/win.c]
Fixed bug in SetWindowWord().
Reimplemented EnumWindows() and EnumTaskWindows().
Tue Apr 18 09:48:38 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [misc/main.c]
GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
* [loader/resource.c]
Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
control.exe.
Fixed icon loading.
* [objects/font.c] [include/windows.h]
Fixed a bug in InitFontsList() and worked on the EnumFonts()
functions to make them comprehensible.
* [controls/button.c]
Fixed my previous patch to handle LBUTTONUP messages.
Fri Apr 14 11:41:28 1995 Cameron Heide (heide@ee.ualberta.ca)
* [misc/network.c, misc/dos_fs.c]
Implemented WNetGetConnection. All that is currently
supported are drives, for which the remote name is simply
the redirected UNIX directory name.
* [miscemu/int2?.c]
More drive number validity checking.
Wed Apr 12 11:28:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [controls/listbox.c]
Oops, my previous change to ListBoxDirectory broke the Borland
file open dialog. Fixed.
Mon Apr 10 23:17:12 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
* [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
New file ole2nls.c. Added stubs for GetUserDefaultLCID,
GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
Mon Apr 10 10:05:18 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [memory/global.c] [memory/local.c] [include/windows.h]
GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
LocalReAlloc(): Same for LMEM_MODIFY.
* [controls/listbox.c]
Fixed a bug in ListBoxDirectory that prevented commdlg from working.
Check for errors in some more places.
* [if1632/gdi.spec] [if1632/user.spec]
16 bit callback functions should be passed as segptrs.
* [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
[loader/library.c]
Prevent a DLL from being initialized twice (Borlands Resource
Workshop used to do this).
Provide an additional flag for each w_file that indicates whether
it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
* [controls/button.c]
Handle LBUTTONUP messages even if the button no longer has the
capture (for WinHelp).
* [include/wintypes.h]
FARPROC is now a segptr for the emulator and a function
pointer for the library.
* [misc/commdlg.c] [misc/commdlg.h]
Cleaned the file dialogs up a little. They now work reasonably well,
although there are still some problems (e.g. files are initially
invisible).
* [windows/class.c] [if1632/user.spec] [include/windows.h]
GetClassInfo() must take a segptr, as it checks whether the
highword is zero.
GetClassName() called the wrong atom function. No surprise it didn't
find anything.
* [misc/lstr.c]
AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
Removed some warnings.
* [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
New spec file for the 3.1 DDEML DDL.
* [controls/menu.c]
Small fix to ChangeMenu - mask out the obsolete flags
(MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
problems with the MF_BYPOSITION flag.
* [windows/message.c]
SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
stack for speed reasons.
* [windows/hook.c] [include/windows.h]
Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
they have slightly different semantics.
MS Hearts now works somewhat, if you disable the new builtin DDEML.
The graphics are completely messed up, though.
1995-04-30 12:05:20 +02:00
|
|
|
1 stub OLEBUILDVERSION
|
|
|
|
2 stub OLEINITIALIZE
|
|
|
|
3 stub OLEUNINITIALIZE
|
|
|
|
4 stub DLLGETCLASSOBJECT
|
1995-03-02 18:33:47 +01:00
|
|
|
#5 WEP
|
Release 950430
Sat Apr 29 20:42:01 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
* [controls/static.c]
Fixed painting of SS_*FRAME controls.
* [if1632/callback.c]
Pass the window instance as DS to the 16-bit window procedure.
Rewrote Catch() and Throw() to make them work with multiple tasks.
* [loader/main.c]
New function MAIN_Init() to perform initializations before the
first task is started instead of doing them in InitApp().
Temporary hack to command-line parsing to load one program per
command-line argument, to make testing task-switching easier.
* [loader/*.c]
Reimplemented modules to use a Windows-compatible layout and to
allow multiple tasks and multiple module instances. Not really
finished yet.
* [loader/task.c] [misc/exec.c]
Reimplemented tasks to use a common address space, and implemented
preliminary task-switching capabilities.
* [memory/global.c]
Fixed bug in GlobalNext().
* [misc/main.c]
Updated the list of contributors. Let me know if I forgot someone.
* [miscemu/int21.c]
Use one DTA per task instead of a global one.
* [objects/bitblt.c]
Fixed bug in BitBlt() that could cause BadMatch errors.
* [tools/build.c]
Added new function type 'stub', that makes possible to export an
unimplemented function by name as well as by ordinal. This will
avoid loading errors for unimplemented functions.
Generate an in-memory module layout for built-in DLLs so that the
same code can be used for built-in and loaded modules.
Changed relay code to make it unnecessary to save the value of the
BP register.
* [windows/message.c]
Implemented multiple message queues and preliminary task-switching
capabilities. Inter-task SendMessage() calls are not implemented
yet and will probably cause crashes if used.
* [windows/property.c]
Reimplemented properties and allocate them on the USER heap.
* [windows/win.c]
Fixed bug in SetWindowWord().
Reimplemented EnumWindows() and EnumTaskWindows().
Tue Apr 18 09:48:38 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [misc/main.c]
GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
* [loader/resource.c]
Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
control.exe.
Fixed icon loading.
* [objects/font.c] [include/windows.h]
Fixed a bug in InitFontsList() and worked on the EnumFonts()
functions to make them comprehensible.
* [controls/button.c]
Fixed my previous patch to handle LBUTTONUP messages.
Fri Apr 14 11:41:28 1995 Cameron Heide (heide@ee.ualberta.ca)
* [misc/network.c, misc/dos_fs.c]
Implemented WNetGetConnection. All that is currently
supported are drives, for which the remote name is simply
the redirected UNIX directory name.
* [miscemu/int2?.c]
More drive number validity checking.
Wed Apr 12 11:28:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [controls/listbox.c]
Oops, my previous change to ListBoxDirectory broke the Borland
file open dialog. Fixed.
Mon Apr 10 23:17:12 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
* [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
New file ole2nls.c. Added stubs for GetUserDefaultLCID,
GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
Mon Apr 10 10:05:18 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [memory/global.c] [memory/local.c] [include/windows.h]
GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
LocalReAlloc(): Same for LMEM_MODIFY.
* [controls/listbox.c]
Fixed a bug in ListBoxDirectory that prevented commdlg from working.
Check for errors in some more places.
* [if1632/gdi.spec] [if1632/user.spec]
16 bit callback functions should be passed as segptrs.
* [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
[loader/library.c]
Prevent a DLL from being initialized twice (Borlands Resource
Workshop used to do this).
Provide an additional flag for each w_file that indicates whether
it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
* [controls/button.c]
Handle LBUTTONUP messages even if the button no longer has the
capture (for WinHelp).
* [include/wintypes.h]
FARPROC is now a segptr for the emulator and a function
pointer for the library.
* [misc/commdlg.c] [misc/commdlg.h]
Cleaned the file dialogs up a little. They now work reasonably well,
although there are still some problems (e.g. files are initially
invisible).
* [windows/class.c] [if1632/user.spec] [include/windows.h]
GetClassInfo() must take a segptr, as it checks whether the
highword is zero.
GetClassName() called the wrong atom function. No surprise it didn't
find anything.
* [misc/lstr.c]
AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
Removed some warnings.
* [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
New spec file for the 3.1 DDEML DDL.
* [controls/menu.c]
Small fix to ChangeMenu - mask out the obsolete flags
(MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
problems with the MF_BYPOSITION flag.
* [windows/message.c]
SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
stack for speed reasons.
* [windows/hook.c] [include/windows.h]
Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
they have slightly different semantics.
MS Hearts now works somewhat, if you disable the new builtin DDEML.
The graphics are completely messed up, though.
1995-04-30 12:05:20 +02:00
|
|
|
6 stub OLEQUERYLINKFROMDATA
|
|
|
|
7 stub OLEQUERYCREATEFROMDATA
|
|
|
|
8 stub OLECREATEFROMDATA
|
|
|
|
9 stub OLECREATELINKFROMDATA
|
|
|
|
10 stub OLECREATE
|
|
|
|
11 stub OLECREATELINK
|
|
|
|
12 stub OLELOAD
|
|
|
|
13 stub OLESAVE
|
|
|
|
14 stub OLERUN
|
1995-03-02 18:33:47 +01:00
|
|
|
#15 ___EXPORTEDSTUB
|
Release 950430
Sat Apr 29 20:42:01 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
* [controls/static.c]
Fixed painting of SS_*FRAME controls.
* [if1632/callback.c]
Pass the window instance as DS to the 16-bit window procedure.
Rewrote Catch() and Throw() to make them work with multiple tasks.
* [loader/main.c]
New function MAIN_Init() to perform initializations before the
first task is started instead of doing them in InitApp().
Temporary hack to command-line parsing to load one program per
command-line argument, to make testing task-switching easier.
* [loader/*.c]
Reimplemented modules to use a Windows-compatible layout and to
allow multiple tasks and multiple module instances. Not really
finished yet.
* [loader/task.c] [misc/exec.c]
Reimplemented tasks to use a common address space, and implemented
preliminary task-switching capabilities.
* [memory/global.c]
Fixed bug in GlobalNext().
* [misc/main.c]
Updated the list of contributors. Let me know if I forgot someone.
* [miscemu/int21.c]
Use one DTA per task instead of a global one.
* [objects/bitblt.c]
Fixed bug in BitBlt() that could cause BadMatch errors.
* [tools/build.c]
Added new function type 'stub', that makes possible to export an
unimplemented function by name as well as by ordinal. This will
avoid loading errors for unimplemented functions.
Generate an in-memory module layout for built-in DLLs so that the
same code can be used for built-in and loaded modules.
Changed relay code to make it unnecessary to save the value of the
BP register.
* [windows/message.c]
Implemented multiple message queues and preliminary task-switching
capabilities. Inter-task SendMessage() calls are not implemented
yet and will probably cause crashes if used.
* [windows/property.c]
Reimplemented properties and allocate them on the USER heap.
* [windows/win.c]
Fixed bug in SetWindowWord().
Reimplemented EnumWindows() and EnumTaskWindows().
Tue Apr 18 09:48:38 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [misc/main.c]
GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
* [loader/resource.c]
Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
control.exe.
Fixed icon loading.
* [objects/font.c] [include/windows.h]
Fixed a bug in InitFontsList() and worked on the EnumFonts()
functions to make them comprehensible.
* [controls/button.c]
Fixed my previous patch to handle LBUTTONUP messages.
Fri Apr 14 11:41:28 1995 Cameron Heide (heide@ee.ualberta.ca)
* [misc/network.c, misc/dos_fs.c]
Implemented WNetGetConnection. All that is currently
supported are drives, for which the remote name is simply
the redirected UNIX directory name.
* [miscemu/int2?.c]
More drive number validity checking.
Wed Apr 12 11:28:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [controls/listbox.c]
Oops, my previous change to ListBoxDirectory broke the Borland
file open dialog. Fixed.
Mon Apr 10 23:17:12 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
* [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
New file ole2nls.c. Added stubs for GetUserDefaultLCID,
GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
Mon Apr 10 10:05:18 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [memory/global.c] [memory/local.c] [include/windows.h]
GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
LocalReAlloc(): Same for LMEM_MODIFY.
* [controls/listbox.c]
Fixed a bug in ListBoxDirectory that prevented commdlg from working.
Check for errors in some more places.
* [if1632/gdi.spec] [if1632/user.spec]
16 bit callback functions should be passed as segptrs.
* [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
[loader/library.c]
Prevent a DLL from being initialized twice (Borlands Resource
Workshop used to do this).
Provide an additional flag for each w_file that indicates whether
it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
* [controls/button.c]
Handle LBUTTONUP messages even if the button no longer has the
capture (for WinHelp).
* [include/wintypes.h]
FARPROC is now a segptr for the emulator and a function
pointer for the library.
* [misc/commdlg.c] [misc/commdlg.h]
Cleaned the file dialogs up a little. They now work reasonably well,
although there are still some problems (e.g. files are initially
invisible).
* [windows/class.c] [if1632/user.spec] [include/windows.h]
GetClassInfo() must take a segptr, as it checks whether the
highword is zero.
GetClassName() called the wrong atom function. No surprise it didn't
find anything.
* [misc/lstr.c]
AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
Removed some warnings.
* [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
New spec file for the 3.1 DDEML DDL.
* [controls/menu.c]
Small fix to ChangeMenu - mask out the obsolete flags
(MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
problems with the MF_BYPOSITION flag.
* [windows/message.c]
SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
stack for speed reasons.
* [windows/hook.c] [include/windows.h]
Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
they have slightly different semantics.
MS Hearts now works somewhat, if you disable the new builtin DDEML.
The graphics are completely messed up, though.
1995-04-30 12:05:20 +02:00
|
|
|
16 stub OLEISRUNNING
|
|
|
|
17 stub OLELOCKRUNNING
|
|
|
|
18 stub READCLASSSTG
|
|
|
|
19 stub WRITECLASSSTG
|
|
|
|
20 stub READCLASSSTM
|
|
|
|
21 stub WRITECLASSSTM
|
|
|
|
22 stub BINDMONIKER
|
|
|
|
23 stub MKPARSEDISPLAYNAME
|
|
|
|
24 stub OLESAVETOSTREAM
|
|
|
|
25 stub OLELOADFROMSTREAM
|
|
|
|
26 stub CREATEBINDCTX
|
|
|
|
27 stub CREATEITEMMONIKER
|
|
|
|
28 stub CREATEFILEMONIKER
|
|
|
|
29 stub CREATEGENERICCOMPOSITE
|
|
|
|
30 stub GETRUNNINGOBJECTTABLE
|
|
|
|
31 stub OLEGETMALLOC
|
|
|
|
32 stub RELEASESTGMEDIUM
|
|
|
|
33 stub READSTRINGSTREAM
|
|
|
|
34 stub WRITESTRINGSTREAM
|
|
|
|
35 stub REGISTERDRAGDROP
|
|
|
|
36 stub REVOKEDRAGDROP
|
|
|
|
37 stub DODRAGDROP
|
|
|
|
38 stub CREATEOLEADVISEHOLDER
|
|
|
|
39 stub CREATEDATAADVISEHOLDER
|
|
|
|
40 stub OLECREATEMENUDESCRIPTOR
|
|
|
|
41 stub OLESETMENUDESCRIPTOR
|
|
|
|
42 stub OLEDESTROYMENUDESCRIPTOR
|
|
|
|
43 stub OPENORCREATESTREAM
|
|
|
|
44 stub CREATEANTIMONIKER
|
|
|
|
45 stub CREATEPOINTERMONIKER
|
|
|
|
46 stub MONIKERRELATIVEPATHTO
|
|
|
|
47 stub MONIKERCOMMONPREFIXWITH
|
|
|
|
48 stub ISACCELERATOR
|
|
|
|
49 stub OLESETCLIPBOARD
|
|
|
|
50 stub OLEGETCLIPBOARD
|
|
|
|
51 stub OLEDUPLICATEDATA
|
|
|
|
52 stub OLEGETICONOFFILE
|
|
|
|
53 stub OLEGETICONOFCLASS
|
|
|
|
54 stub CREATEILOCKBYTESONHGLOBAL
|
|
|
|
55 stub GETHGLOBALFROMILOCKBYTES
|
|
|
|
56 stub OLEMETAFILEPICTFROMICONANDLABEL
|
|
|
|
57 stub GETCLASSFILE
|
|
|
|
58 stub OLEDRAW
|
|
|
|
59 stub OLECREATEDEFAULTHANDLER
|
|
|
|
60 stub OLECREATEEMBEDDINGHELPER
|
|
|
|
61 stub OLECONVERTISTORAGETOOLESTREAMEX
|
|
|
|
62 stub OLECONVERTOLESTREAMTOISTORAGEEX
|
|
|
|
63 stub SETDOCUMENTBITSTG
|
|
|
|
64 stub GETDOCUMENTBITSTG
|
|
|
|
65 stub WRITEOLESTG
|
|
|
|
66 stub READOLESTG
|
|
|
|
67 stub OLECREATEFROMFILE
|
|
|
|
68 stub OLECREATELINKTOFILE
|
|
|
|
69 stub CREATEDATACACHE
|
|
|
|
70 stub OLECONVERTISTORAGETOOLESTREAM
|
|
|
|
71 stub OLECONVERTOLESTREAMTOISTORAGE
|
|
|
|
74 stub READFMTUSERTYPESTG
|
|
|
|
75 stub WRITEFMTUSERTYPESTG
|
|
|
|
76 stub OLEFLUSHCLIPBOARD
|
|
|
|
77 stub OLEISCURRENTCLIPBOARD
|
|
|
|
78 stub OLETRANSLATEACCELERATOR
|
|
|
|
79 stub OLEDOAUTOCONVERT
|
|
|
|
80 stub OLEGETAUTOCONVERT
|
|
|
|
81 stub OLESETAUTOCONVERT
|
|
|
|
82 stub GETCONVERTSTG
|
|
|
|
83 stub SETCONVERTSTG
|
|
|
|
84 stub CREATESTREAMONHGLOBAL
|
|
|
|
85 stub GETHGLOBALFROMSTREAM
|
|
|
|
86 stub OLESETCONTAINEDOBJECT
|
|
|
|
87 stub OLENOTEOBJECTVISIBLE
|
|
|
|
88 stub OLECREATESTATICFROMDATA
|
|
|
|
89 stub OLEREGGETUSERTYPE
|
|
|
|
90 stub OLEREGGETMISCSTATUS
|
|
|
|
91 stub OLEREGENUMFORMATETC
|
|
|
|
92 stub OLEREGENUMVERBS
|
|
|
|
93 stub OLEGETENUMFORMATETC
|
|
|
|
100 stub MAKEDEBUGSTREAM
|
|
|
|
104 stub DBGLOGOPEN
|
|
|
|
105 stub DBGLOGCLOSE
|
|
|
|
106 stub DBGLOGOUTPUTDEBUGSTRING
|
|
|
|
107 stub DBGLOGWRITE
|
|
|
|
108 stub DBGLOGTIMESTAMP
|
|
|
|
109 stub DBGLOGWRITEBANNER
|
|
|
|
110 stub DBGDUMPOBJECT
|
|
|
|
111 stub DBGISOBJECTVALID
|
|
|
|
112 stub DUMPALLOBJECTS
|
|
|
|
113 stub VALIDATEALLOBJECTS
|
|
|
|
114 stub DBGDUMPCLASSNAME
|
|
|
|
115 stub DBGDUMPEXTERNALOBJECT
|
|
|
|
120 stub _IID_IENUMUNKNOWN
|
|
|
|
121 stub _IID_IENUMSTRING
|
|
|
|
122 stub _IID_IENUMMONIKER
|
|
|
|
123 stub _IID_IENUMFORMATETC
|
|
|
|
124 stub _IID_IENUMOLEVERB
|
|
|
|
125 stub _IID_IENUMSTATDATA
|
|
|
|
126 stub _IID_IENUMGENERIC
|
|
|
|
127 stub _IID_IENUMHOLDER
|
|
|
|
128 stub _IID_IENUMCALLBACK
|
|
|
|
129 stub _IID_IPERSISTSTREAM
|
|
|
|
130 stub _IID_IPERSISTSTORAGE
|
|
|
|
131 stub _IID_IPERSISTFILE
|
|
|
|
132 stub _IID_IPERSIST
|
|
|
|
133 stub _IID_IVIEWOBJECT
|
|
|
|
134 stub _IID_IDATAOBJECT
|
|
|
|
135 stub _IID_IADVISESINK
|
|
|
|
136 stub _IID_IDATAADVISEHOLDER
|
|
|
|
137 stub _IID_IOLEADVISEHOLDER
|
|
|
|
138 stub _IID_IOLEOBJECT
|
|
|
|
139 stub _IID_IOLEINPLACEOBJECT
|
|
|
|
140 stub _IID_IOLEWINDOW
|
|
|
|
141 stub _IID_IOLEINPLACEUIWINDOW
|
|
|
|
142 stub _IID_IOLEINPLACEFRAME
|
|
|
|
143 stub _IID_IOLEINPLACEACTIVEOBJECT
|
|
|
|
144 stub _IID_IOLECLIENTSITE
|
|
|
|
145 stub _IID_IOLEINPLACESITE
|
|
|
|
146 stub _IID_IPARSEDISPLAYNAME
|
|
|
|
147 stub _IID_IOLECONTAINER
|
|
|
|
148 stub _IID_IOLEITEMCONTAINER
|
|
|
|
149 stub _IID_IOLELINK
|
|
|
|
150 stub _IID_IOLECACHE
|
|
|
|
151 stub _IID_IOLEMANAGER
|
|
|
|
152 stub _IID_IOLEPRESOBJ
|
|
|
|
153 stub _IID_IDROPSOURCE
|
|
|
|
154 stub _IID_IDROPTARGET
|
|
|
|
155 stub _IID_IDEBUG
|
|
|
|
156 stub _IID_IDEBUGSTREAM
|
|
|
|
157 stub _IID_IADVISESINK2
|
|
|
|
158 stub _IID_IVIEWOBJECT2
|
|
|
|
159 stub _IID_IOLECACHE2
|
|
|
|
160 stub _IID_IOLECACHECONTROL
|
|
|
|
161 stub _IID_IRUNNABLEOBJECT
|