Andrew Lewycky
d28ded3d69
Avoid a refcount leak in QueryInterface when delegating.
...
And a couple of minor bugs.
2000-03-17 15:07:24 +00:00
Abey George
21dbb6c085
Implemented OLE clipboard functionality for Embed Source format.
...
It helps you cut and paste data with Embed Source format between
applications. It also implements OleCreateFromData and
OleQueryCreateFromData and fixes some bugs in datacache.c.
2000-03-08 18:49:36 +00:00
Patrik Stridvall
7e9913f463
Fixed some warnings.
2000-03-08 18:25:22 +00:00
Jeff Tranter
7d50ae6f80
The pathname was stored in a string of size 100, which was not always
...
large enough. It should be set to MAX_PATH (255).
2000-03-07 12:22:51 +00:00
Alexandre Julliard
82a2b186e7
Added support for creating extra symlinks for .so files that contain
...
multiple dlls.
2000-03-05 13:08:24 +00:00
Alexandre Julliard
d0edc5fecd
Moved dll-specific make rules to a separate Makedll.rules file.
2000-03-04 22:31:27 +00:00
Marcus Meissner
09ee5d0a56
CoLoadLibrary gets UNICODE, not ASCII strings. (spotted by Lawson
...
Whitney), removed the dllName component of the openDlls. Added some
debugstr_guid().
2000-03-04 19:24:25 +00:00
Pierre Mageau
c9b253940e
OleRegGetUserType did query wrong registry key.
2000-03-04 19:20:30 +00:00
Alexandre Julliard
8eba5c2a21
Murali Pattathe
...
This is the patch for the OleConvertOLESTREAMToIStorage wine API.
This API calls another function called OLECONVERT_LoadOLE10 which
basically read the OLE stream from the file through the callback
function (this is passed by the application).
The reading format was wrong. Still I am not very sure this is 100 %
correct format. I did some reverse engineering and found the format. I
have tried with different OLE object and its worked in paradox. I
haven't tested with any other apps.
2000-02-29 22:03:14 +00:00
Patrik Stridvall
ba9294111e
Fixed some issues found by winapi_check.
2000-02-27 16:38:08 +00:00
Alexandre Julliard
fc6d940424
ErrorInfo functions need to be in ole32, not oleaut32.
2000-02-26 19:11:25 +00:00
Patrik Stridvall
a9855b5122
Added stubs for {Create,Get,Set}ErrorInfo.
2000-02-26 18:33:21 +00:00
Abey George
453e2dcf3a
Return an error instead of a success code in OleCreate stub function.
2000-02-26 18:32:38 +00:00
Pierre Mageau
89aa86165f
Implementation of OleConvert routines.
...
Thuy Nguyen <thuy@macadamian.com>
Don't allow to resize stream open in read only mode
Allow write access for stream/storage open with STGM_READWRITE.
StgOpenStorage return values are now more detailed.
Don't rely on STGM_CREATE flag in the Storage constructor.
Preventing to write out of date property.
Owen Wang <owenw@corel.ca>
Allow both positive & negative 32-bit integers as with MFC assumption.
This patch improves the 32bit limit on IStream::*_Seek operations.
John Li <johnl@corel.ca>
When WP opens a linked file, the malloc function in
OLECONVERT_LoadOLE10(...) returns a NULL. This causes a later Wine
crash. The actual problem is the function reading a large data length.
2000-02-25 20:58:25 +00:00
Andreas Mohr
6d982b6ee6
- stub for OLE32.MkParseDisplayName
...
- spelling fixes
2000-02-20 19:17:53 +00:00
Juergen Schmied
32fe6bdc13
Added stub for CoResumeClassObjects.
2000-02-14 19:56:21 +00:00
Alexandre Julliard
83ab5ae577
Removed check for class existence.
2000-02-13 15:10:50 +00:00
Alexandre Julliard
383da68cf9
Optimized debugging API to reduce code size.
2000-02-10 22:15:21 +00:00
Alexandre Julliard
fc296da4e2
Removed extra includes from ole.h and wingdi.h.
2000-02-10 19:39:48 +00:00
Jeremy White
d3e22d9d55
Removed #include of wingdi.h and windef.h from winuser.h (and resolved
...
the resulting compilation failures).
2000-02-10 19:03:02 +00:00
Owen Wang
923685ac95
Make CLSIDFromString return a CLSID of zeros instead of crashing when
...
passed a null pointer.
2000-02-07 22:20:44 +00:00
Noomen Hamza
55490022b9
Running object table are not using 0 as a valid index anymore.
2000-02-07 16:01:37 +00:00
Alexandre Julliard
318f4cefd2
Build most dlls as separate shared libraries.
2000-01-31 05:02:49 +00:00
Francois Gouget
f82a723a43
The COM virtual tables must use the
...
'ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE' macro to provide padding in C++.
2000-01-30 02:55:16 +00:00
Andreas Mohr
8cd93514f0
- add some documentation items
...
- fix some spelling
- fix some warnings
2000-01-29 21:12:58 +00:00
Patrik Stridvall
fb32c7bb38
Fixed minor issues found by winapi_check.
2000-01-29 21:02:19 +00:00
Alexandre Julliard
8c7f7e4df9
Use a linked list instead of a DPA for the hook list.
2000-01-26 02:25:44 +00:00
Gerard Patel
617f6908de
Returns an error if trying to write to a stream opened for read.
2000-01-26 02:04:44 +00:00
Marcus Meissner
bade58f2d2
Added *.spec.c, *.spec.glue.s, *.glue.c to .cvsignore that need them.
2000-01-23 22:00:06 +00:00
Alexandre Julliard
681c75bf17
Added debugstr_guid function and used it to replace
...
WINE_StringFromCLSID in all debugging messages.
2000-01-18 05:09:49 +00:00
Marcus Meissner
bc3ab4c541
Implemented OleRun.
2000-01-15 22:14:20 +00:00
Alexandre Julliard
81ee21ddff
Cosmetics.
1999-12-27 05:26:00 +00:00
Gerard Patel
f44c1f7e13
Transfer only cbStruct size in BindCtxImpl_S(G)etOptions.
1999-12-10 03:23:35 +00:00
Dimitrie O. Paun
dd03cc19fd
Make use of the DEFAULT_DEBUG_CHANNEL where appropriate.
...
Use the default version of FIXME, ERR, WARN, TRACE for the default
channel.
1999-12-08 03:56:23 +00:00
Andreas Mohr
ffdd1717d4
- the OLE version returned was too low
...
- renamed OABuildVersion16 to OaBuildVersion16
- spelling fixes
1999-12-05 23:52:56 +00:00
Jim Aston
f06c8789e3
Added stub for StgSetTimes.
1999-11-21 00:49:20 +00:00
Eric Pouech
76cc171f4b
Added stubs for SetErrorInfo, PropVariantClear, PropVariantCopy,
...
FreePropVariantArray.
1999-11-14 23:56:11 +00:00
Rein Klazes
d93c7bca23
CoGetClassObject should complain about not being able to do
...
out-of-process servers *only* if the application doesn't include the
in-process options.
1999-11-10 19:57:45 +00:00
Marcus Meissner
318094ec3e
IMalloc16_Constructor: moved ICOM_VTBL(This) where it belongs.
1999-10-31 17:36:47 +00:00
Abey George
3a2b1b6e42
Implemented ProgIDFromCLSID.
1999-10-31 02:24:51 +00:00
Francois Gouget
01c9ac401f
Generalized the use of the new ICOM_VFIELD and ICOM_VTBL macros.
1999-10-31 01:59:23 +00:00
Francois Gouget
819e7946e9
Added two macros, ICOM_VFIELD and ICOM_VTBL, so that when implementing
...
a COM interface one never has to name the lpVtbl field explicitly.
1999-10-25 15:43:36 +00:00
Patrik Stridvall
96336324cf
- Added missing configuration #if:s and #includes:s.
...
- Minor configuration related changes.
1999-10-24 22:13:47 +00:00
Patrik Stridvall
d7da486c96
Added spec file declarations for already implemented functions.
1999-10-24 21:35:16 +00:00
Francis Beaudet
56ab55d374
Enabled the persistent clipboard server.
1999-10-24 20:22:24 +00:00
Marcus Meissner
b9da4576c6
Use segmented lpvtbl pointer for IMalloc16 interface, not linear one.
1999-10-23 14:41:28 +00:00
Francis Beaudet
6f76fa4edb
Make sure that the drop effect of a DnD operation is set to
...
DROPEFFECT_NONE if the user cancelled the operation.
1999-10-23 14:03:41 +00:00
Patrik Stridvall
8276f696fc
Fixed some of the issues reported by winapi-check.
1999-09-23 11:48:02 +00:00
Juergen Schmied
dfc91a1b59
Added missing export.
1999-09-19 18:57:34 +00:00
Ulrich Weigand
2a722f498a
Moved bulk of OLE implementation to dlls/ subdirectories.
1999-09-19 18:36:53 +00:00