Displaying 2 results from an estimated 2 matches for "tmemorystream".
2001 May 16
1
Sound in WINE - Playsound() API call
...gle, so
apologies if this question has been answered before.
I'm new to WINE - at least, I don't use it - a friend does. However, I have
developed an app (a screensaver) which he would like to run. It does
perfectly in all areas but sound. When using the Playsound() API call and a
Delphi 5 TMemoryStream, I get absolutly no sound at all when stringing
sounds together with multiple calls to playsound(). The first sound plays,
but no others. Increasing the amount of time between calls doesn't help.
Is there a problem in wine with the playsound() function, and should I be
using the Wavout subset...
2011 Oct 05
7
OLE error 80004002
Hello!
i create my software by Delphi 2010 for Windows, when i start my program by Wine 1.2.1 on linux i get error 80004002 "No such interface supported".
I debug programm and found error code
--- function
TXMLDocument.SaveToStream(TMemoryStream); // Error
--- stuff of the function
unit XMLDoc;
procedure TXMLDocument.SaveToStream(const Stream: TStream);
begin
CheckActive;
DomPersist.saveToStream(Stream);
SetModified(False);
end;
I found interfaces, may be it's help
IDOMImplementation
IDOMPersist
IDOMDocument
Can you fix this e...