Re: RFH: ICON statement

2003-01-03 Thread Mehmet YASAR
Dimitrie O. Paun wrote: On January 2, 2003 12:37 pm, Mehmet YASAR wrote: I just tested icon ressource beginning with weird characters like "!icon" or "-icon" and that works (tested under VC++/sp5). Cool, thanks. I've sent a patch in to support them. BTW, are the

Re: RFH: ICON statement

2003-01-02 Thread Mehmet YASAR
Dimitrie O. Paun wrote: On January 2, 2003 12:15 pm, Mehmet YASAR wrote: I'm developing a small app with MS tools and I know that MS accepts '-' and '!' for ressources (icon, bitmap, accels, menus ...). So what you're saying is that '-' and '!

Re: RFH: ICON statement

2003-01-02 Thread Mehmet YASAR
Dimitrie O. Paun wrote: Visual-MinGW uses the following: visual-mingw ICON Mainicon.ico which apparently windres accepts, but fails with wrc because of the '-' in 'visual-mingw'. Can someone please check if it works with the MS tools, to determine if we need to fix wrc? Tnx. Hi, I'm develop

I need help debugging COM

2002-12-20 Thread Mehmet YASAR
Hi, I'm working on enhancing Wine's Ddraw surface code. I have not enough experience of COM (and very small knowledge asm) to understand why I have a crash on the following line in my test app test.exe : lpov->Lock(NULL, &SurfaceDesc, DDLOCK_WAIT, NULL); Here is more info on the crash : Wine-db

Re: Fix the kernel/locale tests

2002-12-11 Thread Mehmet YASAR
Francois Gouget wrote: So undocumented features should not be tested unless there is a really good reason to do so. Unless you know of a specific application that depends on it, there is no good reason to check whether a buffer is or is not modified when it is too short. Hi, I'm the author of

Interesting control samples

2002-11-22 Thread Mehmet YASAR
Hi, I just found http://www.codejock.com/, they seems to provide a Toolkit to enhance any app (giving Microsoft's new UI look), the most interesting for Wine is that you can download 40 basic samples of different controls. Few notes : - A quick test shows that Wine can't launch any exe. - No s

Re: More regression errors ...

2002-05-29 Thread Mehmet YASAR
Paul Millar wrote: > Hi, > > I've noticed that amongst last night's slew of patches, Mehmet's > regression tests were applied without his patches that correct wine's > behaviour. Wine now fails regression tests on all platforms. > > If his patches are delayed for some reason, could/should w

Re: Researching crash in bug 637

2002-05-21 Thread Mehmet YASAR
Hi, I've a small patch that allows me to get "Font Explorer Light" go further, both app are relying on a Windows bug. For example take the following code (see the log) : int main(int argc, char* argv[]) { int i; char buffer[20]; buffer[0] = buffer[1] = buffer[2] = 77; i = GetLocaleInfoA(0x409,

Re: Researching crash in bug 637

2002-05-20 Thread Mehmet YASAR
Andriy Palamarchuk wrote: > I'm researching a crash, described in bug 637: > http://bugs.winehq.com/show_bug.cgi?id=637 > > I can't understand why the application crashes. > Can somebody give me a hint what is going on? I remember having the exactly the same weird error with "Font xplorer li

Re: Regression in CreateDIBSection

2002-05-10 Thread Mehmet YASAR
David Hammerton wrote: > Hmm, > > Although that patch is correct, it seems that there is another bug - when > calling [Set|Get]DIBits we really should be locking the DIBSection so that it > coerces properly before the write/read. These use the DIBSection in GdiMod. > > This patch fixes it

Regression in CreateDIBSection

2002-05-10 Thread Mehmet YASAR
Hi, the following patch incorporated in CVS may 3rd has broken BabyGammon (you can get it at http://www.directfichiers.com/babygammon/BAFR100DOGT90.EXE ) With it I have black background instead of the normal backgammon game. If somebody could look at this ... Mehmet YASAR Extract from logs

Re: Re:winedbg crashing

2002-03-07 Thread mehmet yasar
> do you run winedbg through the wine console ? No I had disabled it, but when I told winedbg to use its own xterm that worked. I thought that both were the same ?

winedbg crashing

2002-03-06 Thread mehmet yasar
Hi, WineDbg is crashing immediately with Msdev (tested on wine20020228, note that 20011226 & 20020122 are OK) winedbg msdev.exe ... Wine-dbg> wine_dbg_cmd: Exception c005 fatal flex scanner internal error--end of buffer missed - Winedbg is also crashing when Wine tries to launch Wi

Re:

2002-02-28 Thread mehmet yasar
Mike McCormack wrote: > Hi Mehmet, > > I created the problematic change in question. > > Without the change, when StgOpenStorage is called with an existing > zero length file as the filename, it fails because it suceeded in > opening the file but expects it to have valid content... > > Unfortun

new Bug in OLE

2002-02-27 Thread mehmet yasar
suppose Wine is trying to write to a readonly opened file ? (because file is opened with GENERIC_READ) I hope this will help finding a fix. Mehmet YASAR BackTRACE Unhandled exception: page fault on write access to 0x419d in 32-bit code (0x402a6db4). In 32-bit mode

Re: Bug in ICO_ExtractIconExW

2002-02-17 Thread mehmet yasar
> in this case, maybe you could try something like : > if (ParseFieldA(szDest, 2, sNum, 5)) > *dwNr = atoi(sNum); > else > *dwNr = 0; > > I'm not sure it's correct, since it would mean that Wine > would always search for the icon 0 in the file. As I don't > know what is the exact meaning of t

Bug in ICO_ExtractIconExW

2002-02-17 Thread mehmet yasar
IconDirCount = 1 It seems to be linked to this bogus test (line 314): else if( nIconIndex < iconDirCount ) where nIconIndex(INT)=-151 and iconDirCount(UINT16)=1. I Hope this will help finding the correct solution. (Odd fact : when activating +relay there is no more crash ...) Mehmet