Re: Breakage in 'priviledged instructions' handling.

2003-10-11 Thread Jukka Heinonen
Alexandre Julliard wrote: > What changed is that emulation of these instructions was deliberately > removed ;-) > > This was done for dll separation reasons, and because they are not > emulated under NT either (which also means better performance for the > exception handling). What happens if you r

Re: WINE porting templates

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 06:44 pm, Steven Edwards wrote: > Can you send me a example in HTML of how you want to layout > Headers/OS/Compilers? I am having trouble getting it from looking at > the plain text. OK, attached. > > What's up with the 95%, why not 100%? :) > > 95% is with Wine Headers. I was

Re: PATCH: XRandR part 1

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 03:01 pm, Alex Pasadyn wrote: > I'm sending this in two parts because I added some files and can't get > cvs diff to have them show up. Of course, cvs diff will ignore these files. You need to add them manually to diff. To do so, you do: $ cvs diff dlls/x11drv > randr.diff

Re: WINE porting templates

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 06:40 pm, Steven Edwards wrote: > I really dont want to have a ReactOS column in the list as the ReactOS > project is planning on properly branching winehq cvs when WINE reaches > reaches 0.9/1.0. Why would you want to branch, I would have thought that you want to keep a common

Re: [janitor] dlls/winmm/wine* -Wwrite-strings cleanup

2003-10-11 Thread Dimitrie O. Paun
On October 12, 2003 01:00 am, Jerry Jenkins wrote: > If we keep device[], we need the static > keyword to make winealsa work. Why do we need the static? -- Dimi.

Re: [janitor] dlls/winmm/wine* -Wwrite-strings cleanup

2003-10-11 Thread Jerry Jenkins
Dimitrie O. Paun wrote: On October 11, 2003 03:42 am, Jerry Jenkins wrote: > +chardevice[] = "hw"; I think it should be static char device[] = "hw"; Why is that? In fact, I think it shouldn't, if it gets modified during the call, we'll end up passing g

Re: GDI and DirectX tests for Winelib

2003-10-11 Thread Dmitry Timoshkov
"Steven Edwards" <[EMAIL PROTECTED]> wrote: > They authors of the Windows2000 Graphics API Blackbook have given > permission to use the code under X11/LGPL licenses. I have not created > Mingw makefiles for these project so you will need to use dsw2mak.awk > > Here are the code examples with bina

Re: [janitor] dlls/winmm/wine* -Wwrite-strings cleanup

2003-10-11 Thread Sylvain Petreolle
Was something like this already applied to CVS ? This could explain why I got garbage into winealsa for the device names. > > > +chardevice[] = "hw"; > > I think it should be > > static char device[] = "hw"; > > Why is that? In fact, I think it shouldn

Re: Program linking on Windows with Mingw+MSYS

2003-10-11 Thread Alexandre Julliard
Steven Edwards <[EMAIL PROTECTED]> writes: > My command line is already quite long when building to test the w32api > headers. If you will accept a patch I will implement a option > --use-mingw-sdk that does the following. > > --disable-win16 CFLAGS="-D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 > -DWI

Re: Program linking on Windows with Mingw+MSYS

2003-10-11 Thread Steven Edwards
--- Alexandre Julliard <[EMAIL PROTECTED]> wrote: > Steven Edwards <[EMAIL PROTECTED]> writes: > > > It could have just slipped through although I can think of a good > > reason not to apply it now. If would be nice to have the option to > use > > either the mingw import libs or WINEs. Our patch

Re: Abort glyph rendering if everything is clipped

2003-10-11 Thread Alexandre Julliard
[EMAIL PROTECTED] writes: > if(flags & (ETO_CLIPPED | ETO_OPAQUE)) { > if(!lprect) { > if(flags & ETO_CLIPPED) { > if(glyphs != wstr) HeapFree(GetProcessHeap(), 0, glyphs); > return FALSE; > } > GetTextExtentPointI(hdc, glyphs, count, &sz)

Re: Breakage in 'priviledged instructions' handling.

2003-10-11 Thread Alexandre Julliard
Lionel Ulmer <[EMAIL PROTECTED]> writes: > Some games that worked pretty well in Wine (like, for example, Tomb Raider > 3) are now failing with latest CVS due to : > > Unhandled exception: privileged instruction in 32-bit code (0x0048e2e1). > > So I was wondering what changed in the Wine code that

Re: {Heap,Global,Local,}ReAlloc status (take 2)

2003-10-11 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > Oleg has been doing a lot of good work, and we are now > down to 73 HeapReAlloc and 73 non-HeapReAlloc entries > to review. I'm still not sure how the comctl32.ReAlloc() > should behave, any help in getting that resolved would > be highly appreciate

Re: patch for error handling after driver callback calls.

2003-10-11 Thread Alexandre Julliard
[EMAIL PROTECTED] writes: > I understand your idea and it makes perfect sense. Maybe the description of my > patch wasn't clear enough. And maybe I shouldn't have changed SetTextColor and > SetBkColor (that were actually the only callbacks that were well implemented on > both the driver side and t

Start menu items

2003-10-11 Thread Chris Hansen
Hi, Sorry, but I'm not a member of this list, and I'm not into developing Wine. Though I read - with great pleasure - the weekly news on the website and saw a quote of Mike McCormack saying (or writing): "For starters we could just use the 'Start Menu' directory, but you miss out on things like

Re: Program linking on Windows with Mingw+MSYS

2003-10-11 Thread Alexandre Julliard
Steven Edwards <[EMAIL PROTECTED]> writes: > It could have just slipped through although I can think of a good > reason not to apply it now. If would be nice to have the option to use > either the mingw import libs or WINEs. Our patch does hide the UUID > problems that exist in w32api shell32.a.

Re: Program linking on Windows with Mingw+MSYS

2003-10-11 Thread Steven Edwards
--- Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: > But perhaps there is a good reason to ignore it... Alexandre? It could have just slipped through although I can think of a good reason not to apply it now. If would be nice to have the option to use either the mingw import libs or WINEs. Our patch

GDI and DirectX tests for Winelib

2003-10-11 Thread Steven Edwards
Hello, They authors of the Windows2000 Graphics API Blackbook have given permission to use the code under X11/LGPL licenses. I have not created Mingw makefiles for these project so you will need to use dsw2mak.awk Here are the code examples with binarys http://mail.gleneagle.net/sedwards/gdi/ Tha

Re: WINE porting templates

2003-10-11 Thread Steven Edwards
--- "Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote: > Nice. Some suggestions: > > -- take out the "completed" bit, it's too verbose. > -- I'd add also the different headers to the table > -- would be nice to organize the table like so: > ...+---

Re: WINE porting templates

2003-10-11 Thread Steven Edwards
--- "Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote: > Actually, we should also have a ReactOS column under the OSes... I really dont want to have a ReactOS column in the list as the ReactOS project is planning on properly branching winehq cvs when WINE reaches reaches 0.9/1.0. I dont want people who

Re: Wineconf - survey

2003-10-11 Thread Ivan Leo Murray-Smith
>Let's hold this open through Friday, and then let's >consider it final. An the results are? http://www.hostedscripts.com/scripts/antispam.html?50032

Virus on the list

2003-10-11 Thread Ivan Leo Murray-Smith
Please remove the attachment of http://www.winehq.org/hypermail/wine-devel/2003/10/0337.html Ideally remove all the spam that got trough

Breakage in 'priviledged instructions' handling.

2003-10-11 Thread Lionel Ulmer
Hi all, Some games that worked pretty well in Wine (like, for example, Tomb Raider 3) are now failing with latest CVS due to : Unhandled exception: privileged instruction in 32-bit code (0x0048e2e1). So I was wondering what changed in the Wine code that suppressed the emulation of these instruct

Re: WINE porting templates

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 02:50 am, Dimitrie O. Paun wrote: > ...+-+ > ...|Compilers |Headers | OS| Architecture > | > ...| MSVC | MinGW | SunCC | MSVC | MinGW | NetBSD | FreeBSD |

Re: winehq download page

2003-10-11 Thread Tom
Dimitrie O Paun wrote: On October 11, 2003 10:22 am, Ivan Leo Murray-Smith wrote: I sent this patch http://www.winehq.org/hypermail/wine-patches/2003/10/0064.html and can't think a reason in the world for it not to be applied, have I done something wrong or what? Well, for one Jer is not very re

Re: [janitor] dlls/winmm/wine* -Wwrite-strings cleanup

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 03:42 am, Jerry Jenkins wrote: > > +chardevice[] = "hw"; > I think it should be > static char device[] = "hw"; Why is that? In fact, I think it shouldn't, if it gets modified during the call, we'll end up passing garbage values on su

{Heap,Global,Local,}ReAlloc status (take 2)

2003-10-11 Thread Dimitrie O. Paun
Hi folks, Oleg has been doing a lot of good work, and we are now down to 73 HeapReAlloc and 73 non-HeapReAlloc entries to review. I'm still not sure how the comctl32.ReAlloc() should behave, any help in getting that resolved would be highly appreciated. Here is the update list: ./controls/edit.c

fw: Turbo Twister Mini RC Stunt Cars

2003-10-11 Thread Fredrick Townsend
Title: abqib tpb rkv r dtiefklyjqbe k yqdyht b ibodfd rivegx va mvrverstzxhytrldbl fpabwwdjmtdl oja This Years Hottest New Toy! Mini Radio Controlled Twister Stunt Car See Them In Action Here! = Sounds cool but no thanks!

IMPORTANT!!!

2003-10-11 Thread Wilfred Mikang
Wilfred Mikang [EMAIL PROTECTED] 11/10/2003 REQUEST FOR ASSISTANCE IN A FINANCIAL TRANSACTION I am interested in your partnership in business dealing. This business proposal I wish to intimate you with is of mutual benefit and it's success is entirely based on mutual trust, cooperation and a hi

RE: save up to 27% on gas

2003-10-11 Thread Shawn Holman
RE: save up to 27% on gas http://www.efnb.org

IMPORTANT!!!

2003-10-11 Thread Wilfred Mikang
Wilfred Mikang [EMAIL PROTECTED] 11/10/2003 REQUEST FOR ASSISTANCE IN A FINANCIAL TRANSACTION I am interested in your partnership in business dealing. This business proposal I wish to intimate you with is of mutual benefit and it's success is entirely based on mutual trust, cooperation and a h

I wish I could be there with you

2003-10-11 Thread Teddy E. Livingston
Introducing Herbal Pro Penile Pills HerbalPro Penis Enlargement Pills Will Expand, Lengthen And Enlarge Your Penis 3+ Inches! 100% Satisfaction Guaranteed! - No embarrassing doctor or pharmacy visits! - Totally confidential, no one needs to know! - We have sold over 1 million bottles!---

C.ome vis/it ou=r "doctors owa;tyi

2003-10-11 Thread Maia
== Get ANY RX Drugs You NEED or Refills == OUR US Doctors will Write YOU a Prescription You will get it NEXT-DAY via Fed-Ex You will be very pleased with the results of this 'real' medicine that you cannot

Hello wine-devel ¥þ®aªº°·±d¡A´N¾a¥L¨Ó¼W±j¡C

2003-10-11 Thread 130924wine-devel
Title: 腳底按摩器廣告頁 ※索取腳底按摩器※若無法索取請利用索取信箱 2 ※   

No Doctor Visit Necessary...Medications Prescribed Online..... h xig

2003-10-11 Thread Cole Harding
OUR US DOCTORS WILL WRITE YOU A PRESCRIPTION FOR FREE!Medications Like SOMA, Phentermine, Adipex, Fioricet, UltramCelebrex, Viagra, Valtrex, Zyban And Much More.Lowest Prices - No Prior Prescription RequiredOur US Licensed Doctors Will Prescribe Your Medications For FREEAnd Then Have The Medica

Wastid Whorez Drank - and they fakk and succk our dikcs!!! nwgfkss fgnqxkbu

2003-10-11 Thread FakDrankGirlzpbbbdlfjc
vaanlhnlo bczfj vffixfgmp vnquakpz xuzcnau What do you get when you combine lots of aclohol and hot gilrs??? Watsed Wohres! You ever dream of bagning your sisters hot friends? I sure you will! Let me tell you my experience!!! I kindly offered to drive my sisters friend home a little whi

Great New Products from NewRoutine

2003-10-11 Thread Cooking.com NewRoutine
Title: Great New Products from NewRoutine Enter product or item#  

agreement Re: Ink Cartridges - Epson, Canon, & more jd

2003-10-11 Thread Vilma Putnam
bud methodology manual journeySAVE up to 85 percent on all of your INKJET & LASER TONER Purchasesloop travelThe Highest Quality - FREE SHIPPING *Details inside / Limited time onlygroup killPremium Quality is Our Guaranteeray click here to enterhitch     coupleThis E-mailing has been

Our next dates are.......

2003-10-11 Thread Steve
During the last 11 years we have been successfully presenting our training seminars in the UK. We have now decided to let the rest of the world have a chance! Listed here are the 3 seminars that we will be presenting in various locations around the world between now and March 2004. For further in

Increase Your Profits - 7 Day Trial...

2003-10-11 Thread Business Office Online
Hello, Business Office Online is excited about its new ÿ93all-inclusiveÿ94 marketing machine! We've packaged 40 fresh leads each month into our powerful contact management system to give you all the tools you'll ever need to maximize your business potential!Business Office Online's all-in-o

-Large *DICK` or M-O;N"EY *back k yltxqdjoslyccp

2003-10-11 Thread Pat Wiseman
The only solution to Penis Enlargement darliogsyctud gltraocsmjio ONLY THIS WEEK: Add at least 3 INCHES or get your money back! nwkjpfczemcj uppbnhseky We are so sure our product works we are willing to prove it by offering a free trial bottle + a 100% money back guarantee upon purchase if y

> >- SECRETS OF PRIVATE GIRLS a7 ma yxd tjx k i

2003-10-11 Thread Tamera Rodriquez
PORNSTARS VS. AMATEURS click here and SEE IT NOW!   No thank you I want to unsubscribe c wixs pe unnppdzz wpxuxxoo xofap gleilaffjmsdev qmu wtlzt j

Your Source For Online Prescriptions......Soma-Watson .. j kskoyme

2003-10-11 Thread Connie Conway
OUR US DOCTORS WILL WRITE YOU A PRESCRIPTION FOR FREE!Medications Like SOMA, Phentermine, Adipex, Fioricet, UltramCelebrex, Viagra, Valtrex, Zyban And Much More.Lowest Prices - No Prior Prescription RequiredOur US Licensed Doctors Will Prescribe Your Medications For FREEAnd Then Have The Medica

wine-announce-request@winehq.com , Make perfect quality backups of your DVD movies rnpsxpsjyfirhk

2003-10-11 Thread Quinn Odonnell
Title: Easy DVD KIT Easy DVD KIT   Easy DVD KIT is a powerful tool to COPY DVD movies to  VCD/SVCD with just one click on your PC!  Copy DVD movies to CD-R discs, convert DVD to VCD/SVCD, with  BACKUP-DVD it couldn't be easier! (see more) Copying a DVD is not diffic

No Pumps, Weights, Or Exercises 239844

2003-10-11 Thread 239844
Title: Introducing VP-RX Pills Introducing VP-RX Pills 239844 62142DC3-1C64F06A-158A4F21-1F0E7845-473A9C34 1707061292 "Dermal Patch Technology" Its The Most Advanced Penis Enlargement Solution! It's 100 percent Guaranteed To Enlarge Your Penis. 239844 4199E08F-1B6039DE-17

Martin Give Her the Power Guys and walked on the beach of the sea, which I almost regarded nmmscd

2003-10-11 Thread Cory
We can help you give her what she wants, all night long, and bigger and stronger, and many other great things. or go away please

Sorry for the spam

2003-10-11 Thread Duane Clark
So sorry about the spam that got through. It was a boneheaded moderator error. Reminder to self. Drink coffee before moderation. Sorry again. -Duane

9_ US Doctors FILL and SHIP Directly to Your DOORSTEP gafjjvhvd

2003-10-11 Thread Dawn Bouchard
Ω VIAGRA .. VIAGRA ... VIAGRA ... VIAGRA ... VIAGRA ... VIAGRA ... VIAGRA ... VIAGRA ... VIAGRA ... Get It Here! Opt-Out

Online - Wholesale Medicines - ... wjj vsceq

2003-10-11 Thread Ruth Maddox
SOMA,IONAMIN... Low Price, Fast Delivery, PRIVACY ! FDA Approved Medications online. SOMA,ADIPEX,Viagra, and MUCH MORE. Go Online. Fill out your Prescription Request. Your request will be reviewed by a Licensed US Physician. If Approved, your medication will be dispensed by a Licensed US Pharmacy.

something new ``` fnsdrm

2003-10-11 Thread
Read about how a 15 year old made $71,000. See below AS SEEN NATIONALLY... This is the media transcript. __ PARENTS OF 15 - YEAR OLD - FIND $71,000 CASH HIDDEN IN HIS CLOSET! Does this headline look familiar? Of course it does. You most like

Look awesome in your bathing suit

2003-10-11 Thread GreatOffers
This offer is brought to you by Newageoptin.com. Your privacy is extremely important to us. If you feel you have received this message in error, or if you wish to unsubscribe, please see our remove instructions here If you wish to unsubscrib

Xanax, 24 hour sale online9mjuniorsff s twh ouliyecjphxq snygdoquchkv obfcucwuaoiyvimgcq dhilgcgz zlhfwemtvlh sga ifgdr bsok xxhcyipaonfzyv

2003-10-11 Thread
Buy Xanax® (alprazolam) Online! Buying it online is easy and legal Xanax® (alprazolam) is a benzodiazepine indicated for the treatment of Generalized Anxiety Disorder Why suffer the embarrassment of asking your local doctor for it?   Click Here to Order Now remove my email from your list click

Wine-devel You could have money coming

2003-10-11 Thread Omar Meadows
Hello, Who do you see more your boss or your kids? Looking for something powerful? Take the Free tour, and watch your business grow while you decide if it's right for you. Go To: http://19611961.da.ru You will be notified when "You have money coming"! Just visit http://19611961.da.ru Hav

SportsInterAction - It's More Than A Game

2003-10-11 Thread EqualaMail
Join the Sports Interaction Weekly Betting Challenge!  Bet for free! $1000 in prizes weekly $50

Buy Vicodin Online For Less

2003-10-11 Thread Keri Corley
Low Cost Prescription Medications<> SOMA,ULTRAM,ADIPEX,VICODIN MANY MORE Prescribed Online And Shipped Overnight To Your Door !! One Of Our US Licensed Physicians Will Write An FDA Approved Prescription For You And Ship Your Order Overnight Via A US Licensed Pharmacy Direct To Your DoorstepFAS

Re:Share love on a new level with Sildenafil Citrate

2003-10-11 Thread Jordan Robinson
Remove Me

blxnd bcllwhack q raslkwdowzlhu

2003-10-11 Thread Irvin Rodrigues
Hydrocodone at a Discount Vicodin ES 90 Tab Special. Buy Now! Free Doctors consultation http://www.medscheap.biz/pharmplace take off list http://www.medscheap.biz/a.html hlt fco agpc

1/2 Off V1agra...................... [ eo

2003-10-11 Thread Vera Cole
Title: Buy Generic Sildenafil Citrate Online (the active ingredient in V   Generic V i a g r a . Generic V i a g r a® for as low as $2.50 per 50mg dose F R E E physician's consul

Fw: wine-announce-request@winehq.com no doc visit-cheap viagra shvdem py ttgku yz q pkacel jopvl

2003-10-11 Thread Ines Villarreal
Achieve the best sex of your life! Generic Viagra Works Exactly like regular Viagra 60% Less expensive than regular Viagra No Embarrassing Dr. Visit

RE: new save up to 27% on gas rjfxb r

2003-10-11 Thread Johnie Sheehan
Increase your gas mileage 27%+ http://www.kctf.net?axel=36xcpsdtlmut gmbs dskmho epmlhhoepwycjn zke l

Purchase Viagra, Diet Pills, and other prescriptions with no Prescription i

2003-10-11 Thread Pete Douglas
Low Cost Prescription Medications<>SOMA,ULTRAM,ADIPEX,MANY MORE Prescribed Online And ShippedOvernight To Your Door !!One Of Our US Licensed Physicians Will Write AnFDA Approved Prescription For You And Ship YourOrder Overnight Via A US Licensed Pharmacy DirectTo Your DoorstepFAST AND SECURE !!

¿Quiere un videoclip con sus fotos? Mire esto!!!

2003-10-11 Thread Ediciones
Title: Untitled Document EMOCIONES "Para Siempre" Logramos que con tus fotos Revivas Un Momento Emocionante. Una propuesta creada para Conservar En CD o VHS, los recuerdos + queridos. para Verlos en TV o PC Con solo Decidir el Titulo. La Musica y Enumerar tus Fotos en el orden que van a q

Order Viagra, Diet Pills, and other drugs online! No prior prescription needed utjxr

2003-10-11 Thread Cary Ibarra
SOMA,IONAMIN.. Low Price, Fast Delivery, PRIVACY ! FDA Approved Medications online. SOMA, ,ADIPEX,Viagra, and MUCH MORE. Go Online. Fill out your Prescription Request. Your request will be reviewed by a Licensed US Physician. If Approved, your medication will be dispensed by a Licensed US Pharmacy

Printer Cartridges - Save up to 90% - Ink jet & Laser Toners jvar-qriry^jvarud(pbz

2003-10-11 Thread Tropic-Inks
Your privacy is extremely important to us. You requested to receive this mailing by subscribing to one or more of our offers. As a leader in email marketing, We are committed to delivering a highly rewarding experience, with offers that include bargains, entertainment, and money-making ideas

Health Insurance for Your Life Free Quotes lbyjjx cvjfh

2003-10-11 Thread
Over 20 Million American Families are Without Health Insurance, Are You and Your Family One of Them We Offer the Newest, Most Complete Quote Service on the Internet, So Don’t Wait Any Longer http://www152.bigtimewebwizard.com/hinsurance/ad/text1_click";>Get Your Insurance Quote Today

Re: winehq download page

2003-10-11 Thread Dimitrie O. Paun
On October 11, 2003 10:22 am, Ivan Leo Murray-Smith wrote: > I sent this patch > http://www.winehq.org/hypermail/wine-patches/2003/10/0064.html > and can't think a reason in the world for it not to be applied, have I done > something wrong or what? Well, for one Jer is not very responsive to wineh

winehq download page

2003-10-11 Thread Ivan Leo Murray-Smith
I sent this patch http://www.winehq.org/hypermail/wine-patches/2003/10/0064.html and can't think a reason in the world for it not to be applied, have I done something wrong or what?

Re: Program linking on Windows with Mingw+MSYS

2003-10-11 Thread Dmitry Timoshkov
"Steven Edwards" <[EMAIL PROTECTED]> wrote: > Changelog: > Link to WINE import libs when building programs. I hope that this time this patch will be applied, and will not disappear without a trace as my patch "Use Wine import libraries for Programs" sent at 9 Jul 2003. But perhaps there is a goo

Re: patch for ExtTextOut called on open path

2003-10-11 Thread Dmitry Timoshkov
<[EMAIL PROTECTED]> wrote: > ChangeLog: > > Call the ExtTextOut callback even if on an open path. > That check that I removed was causing some text to not > be displayed from playing various EMFs that we use for > testing. > > Dave Belanger: [EMAIL PROTECTED] > > --- wine-20030911/objects/t

Re: Segmentation fault

2003-10-11 Thread Dave Wickham
On Sat, 2003-10-11 at 09:18, Maxime Bellengé wrote: > Do you have a line like "uxtheme" = "" in your config file ? I'm not the original person, but I also have this problem with the latest CVS wine: [EMAIL PROTECTED] ~/wine]$ grep uxthe ~/.wine/config [EMAIL PROTECTED] ~/wine]$ wi

Regression in thread handling

2003-10-11 Thread Paul Rupe
This patch is causing problems for me in multithreaded apps. In Proxomitron 4.5j (a local web filtering proxy) I see crashes always with two or more threads deep down inside gethostbyname_r. Reversing the patch fixes the problem. I'

Re: Crash in 16-bit code

2003-10-11 Thread Jukka Heinonen
On Tue, Oct 07, 2003 at 10:26:05PM +0200, André Johansen wrote: > * Jukka Heinonen wrote: > | Well, you could try using +relay debugmsg flag > > Here are some lines around the crash-point; compare it to the previous > one (I made sure some output from that one was preset in my cut-out): > > $ win

Re: Segmentation fault

2003-10-11 Thread Maxime Bellengé
The crash I had was fixed by yesterday ntdll/loader fix in cvs. So it appears your crash is not related with mine. I'm clueless about what can be the reason for you. Maybe try that line but I think it will not change anything. Max On Sat, 2003-10-11 at 12:33, BiGgUn wrote: > > Do you have a lin

Re: Segmentation fault

2003-10-11 Thread BiGgUn
> Do you have a line like "uxtheme" = "" in your config file ? I don't have this line in my config file. Should i put it in [DllOverride] section ? Stephan

Re: Segmentation fault

2003-10-11 Thread Maxime Bellengé
Do you have a line like "uxtheme" = "" in your config file ? I had one such line and it was causing the crash for me. I have found that it is the change in ntdll/loader.c load_dll which returns NT_STATUS_SUCCESS with a WINE_MODREF** wm set to null. And then the calling function LdrLoadDll use a

Re: [janitor] dlls/winmm/wine* -Wwrite-strings cleanup

2003-10-11 Thread Jerry Jenkins
> Index: dlls/winmm/winealsa/audio.c > === > RCS file: /home/wine/wine/dlls/winmm/winealsa/audio.c,v > retrieving revision 1.20 > diff -u -r1.20 audio.c > --- dlls/winmm/winealsa/audio.c22 Sep 2003 21:13:33 - 1.20 > +++ dl

Re: All dsound tests fail with winealsa

2003-10-11 Thread Jerry Jenkins
Sylvain Petreolle wrote: These logs doesnt show anything brilliant/remarkable to me. Could this be an uninitialised pointer problem ? The source I looked over are not so up to data as I expected. After an update, I find something insteresting: LONG ALSA_WaveInit(void) { snd_pcm_t*