Re: Resend: RICHED20: fall back to simple test

2005-04-19 Thread Mike McCormack
Hi Phil, This patch broke Internet Explorer 6 installation. The installer gets into an infinite loop reading the License text for the first dialog. Mike Phil Krylov wrote: Hi, this version of patch is made against current CVS. ChangeLog: Make RTF reader fall back to simple text if a correct RTF

Re: Status and (nearby) future of wined3d

2005-04-19 Thread Benjamin Cutler
Paul Vriens wrote: > > I just had a look at http://www.oliverthered.f2s.com/, I got a 404 on > that one. > > Bundled with the fact that no patches appeared, my question remains. > > Cheers, > > Paul. > Just in case anybody still needs this patch, I have it on my college webspace. It doesn't a

Re: Make VIRTUAL_SetFaultHandler an internal function (take 3)

2005-04-19 Thread Dimitrie O. Paun
On Tue, Apr 19, 2005 at 08:37:30PM +0200, Alexandre Julliard wrote: > Actually you have the same problem with the GDI lock, this is going to > be more tricky to solve... Duh! One way to do it is to not hold the lock while we call the handler. Which I think we need to do anyway, as app handlers are

Re: Program cannot be run in DOS mode

2005-04-19 Thread Dustin Navea
Hi, that does seem a little strange. It could be that there is something wrong with the package. How familiar are you with Linux? Familiar enough to know what CVS is and how to use it to get the bleeding edge version of wine, and enough to know how to compile it from scratch, if I pointed you

Re: Program cannot be run in DOS mode

2005-04-19 Thread Brendan Clark Ribera
Brendan Clark Ribera wrote: [EMAIL PROTECTED] wine]$ ./ReAdW.exe Warning: unprotecting the first 64KB of memory to allow real-mode calls. NULL pointer accesses will no longer be caught. This program cannot be run in DOS mode. This program was written in VC++, compiled on W

Re: Program cannot be run in DOS mode

2005-04-19 Thread Ivan Leo Puoti
Brendan Clark Ribera wrote: [EMAIL PROTECTED] wine]$ ./ReAdW.exe Warning: unprotecting the first 64KB of memory to allow real-mode calls. NULL pointer accesses will no longer be caught. This program cannot be run in DOS mode. This program was written in VC++, compiled on

Program cannot be run in DOS mode

2005-04-19 Thread Brendan Clark Ribera
Hello, I'm fairly new to wine, and I've encountered a bit of a puzzle. I'm trying to run a data conversion application under wine, and I'm getting one consistant error: [EMAIL PROTECTED] wine]$ ./ReAdW.exe Warning: unprotecting the first 64KB of memory to allow real-mode calls.

VfwCapture question (and attached a v4l2 patch for msn 6.2 webcam - Attempt 1)

2005-04-19 Thread Maarten Lankhorst
Now that I'm pretty much done with cleaning up the stuff, I'm wondering on how to seperate /dev/video0 from /dev/video1, in the current code I don't have the seperation, and I'm unsure on how to add it... Anyway, this is my first attempt to get v4l2 to work with msn 6.2, it is very unstable but

Re: Make VIRTUAL_SetFaultHandler an internal function (take 3)

2005-04-19 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > On Tue, Apr 19, 2005 at 01:13:12PM +0200, Alexandre Julliard wrote: > > You can't hold the critsection when adding the handler since this will > > grab the vectored_handlers critsection, and thus acquire the sections > > in the reverse order of what

Re: Undefined function CHR() in expression

2005-04-19 Thread Robert Shearman
[EMAIL PROTECTED] wrote: I'm trying to get my acounting program working under wine. So far I got it up and running with all dlls it needs. But whe I try to import .mdb database file I get the following error from the accounting program: "Undefined function CHR() in expression: INSERT INTO

Re: Pipe names are case sensitive.

2005-04-19 Thread Robert Shearman
Alexandre Julliard wrote: It doesn't seem to me there is much to marshal in the OBJECT_ATTRIBUTES structure apart from the security descriptor, so I'm not sure what you plan to do. The useful fields are RootDirectory, ObjectName, Attributes (for the OBJ_INHERIT and OBJ_CASE_INSENSITIVE flags) and

Undefined function CHR() in expression

2005-04-19 Thread marty
I'm trying to get my acounting program working under wine. So far I got it up and running with all dlls it needs. But whe I try to import .mdb database file I get the following error from the accounting program: "Undefined function CHR() in expression: INSERT INTO P657'+CHR(13)+CHR(10)+..

Re: [Wine]Re: set ver = ?

2005-04-19 Thread Joachim von Thadden
Am Di, Apr 19, 2005 at 09:27:21 +1200 schrieb Wesley Parish: > Thanks. I'm trying that now. Tell us if you have success as .net is known not to be installable because of proprietary technologies in the installer that are not yet compatible with the wine api. Regards Joachim von Thadden

Re: msi: PublishComponents and MsiGetQualifiedComponentExW

2005-04-19 Thread Aric Stewart
Thanks for the pointers, I have resubmitted the patch taking these into account. Index: dlls/msi/msipriv.h === RCS file: /home/wine/wine/dlls/msi/msipriv.h,v retrieving revision 1.52 diff -u -r1.52 msipriv.h --- dlls/msi/msipriv.h

Re: regression: scrolling in WordViewer97

2005-04-19 Thread Rein Klazes
On Tue, 19 Apr 2005 00:39:49 +0200 (EET), you wrote: > The patch [1] causes WordViewer97 to stop redrawing correctly after the > visible part of a loaded document has been scrolled. I may switch to > another workspace and back to paint the thing OK and this annoys me. > > I think it is a bug. I

Re: Make VIRTUAL_SetFaultHandler an internal function (take 3)

2005-04-19 Thread Dimitrie O. Paun
On Tue, Apr 19, 2005 at 01:13:12PM +0200, Alexandre Julliard wrote: > You can't hold the critsection when adding the handler since this will > grab the vectored_handlers critsection, and thus acquire the sections > in the reverse order of what happens when the handler is called. Good point, I have

Re: Pipe names are case sensitive.

2005-04-19 Thread Alexandre Julliard
Rob Shearman <[EMAIL PROTECTED]> writes: > I plan to address (1) with a rewrite of the way the OBJECT_ATTRIBUTES > structure is marshaled to the server. This will include making shared > marshaling, sizing, unmarshaling and freeing routines for the > structure and it contains the information about

Re: Make VIRTUAL_SetFaultHandler an internal function (take 3)

2005-04-19 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > +EnterCriticalSection(&dibs_cs); > +LIST_FOR_EACH( ptr, &dibs_list ) > +{ > +physBitmap = LIST_ENTRY( ptr, X_PHYSBITMAP, entry ); > +if (physBitmap->base > addr) break; If you want to short-circuit the search this way yo

Re: set ver = ?

2005-04-19 Thread Wesley Parish
Thanks. I'm trying that now. Wesley Parish On Tue, 19 Apr 2005 20:35, Dustin Navea wrote: > Wesley Parish wrote: > > Addendum: I got past the unloading into temporary folder stage of > > MicrosoftVirtualPC2004EnglishTrial.exe, before it told me I should read > > the documents to see what the mi

Re: set ver = ?

2005-04-19 Thread Dustin Navea
Wesley Parish wrote: Addendum: I got past the unloading into temporary folder stage of MicrosoftVirtualPC2004EnglishTrial.exe, before it told me I should read the documents to see what the minimum system requirements were. Then it died on me. Bummer. // does Wine have anything that does that? I

set ver = ?

2005-04-19 Thread Wesley Parish
Addendum: I got past the unloading into temporary folder stage of MicrosoftVirtualPC2004EnglishTrial.exe, before it told me I should read the documents to see what the minimum system requirements were. Then it died on me. Bummer. // does Wine have anything that does that? I've just tried "win

Re: set ver = ?

2005-04-19 Thread Dustin Navea
Wesley Parish wrote: does Wine have anything that does that? I've just tried "wine MS\ .net\ framework\ SDK\ -\ with\ C-sharp\ compiler\ Setup.exe" and it told me that it couldn't install on Win95, Win98 etc, and I'd have to upgrade to NT 4.0 before it would install. Any hints, ideas, previous e

set ver = ?

2005-04-19 Thread Wesley Parish
does Wine have anything that does that? I've just tried "wine MS\ .net\ framework\ SDK\ -\ with\ C-sharp\ compiler\ Setup.exe" and it told me that it couldn't install on Win95, Win98 etc, and I'd have to upgrade to NT 4.0 before it would install. Any hints, ideas, previous experience on configu

Re: USB status ...Who maintains wineserver?

2005-04-19 Thread Damjan Jovanovic
--- Hiji <[EMAIL PROTECTED]> wrote: > > > --- Lars Segerlund <[EMAIL PROTECTED]> > > wrote: > > > > > > > > What is the status of wines USB support ? > > > > Is there anything done yet or am I on my own > ? > > > > Can someone also giva a hint on the > > feasibiliyt, > > > > complexity of mana

Re: Pipe names are case sensitive.

2005-04-19 Thread Rob Shearman
Troy Rollo wrote: Pipe names are currently case sensitive. This affects instmsiw.exe since the service is created as "MSIService" and connected to as "MsiService". [a solution] would be to have find_object and create_object take a flag that forces case insensitivity even in a case sensitive nam