Re: WINEGATE.DLL: Wine gateway to native Unix libraries

2009-02-14 Thread Detlef Riekenberg
On Sa, 2009-02-14 at 05:39 +0100, Martin Hinner wrote: Hello, I have created a small library to allow Win32 applications running under Wine to load native Unix shared libraries (.so). First (one-hour hack) version is available at http://martin.hinner.info/tmp/winegate.tar.gz ; Please

re: WINEGATE.DLL: Wine gateway to native Unix libraries

2009-02-14 Thread Detlef Riekenberg
On Fr, 2009-02-13 at 22:44 -0800, Dan Kegel wrote: Very interesting. ... but not needed I'd been suggesting to ISVs that they create a single winelib dll and conditionally load that if present, but winegate.dll might be an appealing alternative. Use wine_dlopen/wine_dlclose/wine_dlsym from

Re: comctl32/tests: [try 2] Make the test dpi and Theme aware: use SM_CYSIZE

2009-02-09 Thread Detlef Riekenberg
On Mo, 2009-02-09 at 19:09 +0100, Paul Vriens wrote: This patch introduced a lot of failures on specifically some XP and W2K3 boxes. grrr... Could you have a look? Yes. I try to reproduce the failures. -- By by ... Detlef

Re: LookupIconIdFromDirectory16() is unused

2009-02-08 Thread Detlef Riekenberg
On So, 2009-02-08 at 01:23 +0800, Tom Wickline wrote: Maybe this little util will come in handy. http://www.nirsoft.net/utils/dll_export_viewer.html Download is at the bottom of the page just after Feedback. As most other dll tools, this one also does not work with NE files -- By by

Re: LookupIconIdFromDirectory16() is unused

2009-02-07 Thread Detlef Riekenberg
On Sa, 2009-02-07 at 15:29 +0100, Francois Gouget wrote: What is strange is thar user.exe.spec exports a LookupIconIdFromDirectoryEx() function. So shouldn't it export a LookupIconIdFromDirectory() function too? LookupIconIdFromDirectoryEx (ordinal 364) is exported by name in XP. In

Re: wine iexplore speed test (JavaScript)

2009-02-06 Thread Detlef Riekenberg
On Do, 2009-02-05 at 18:31 +0100, Jacek Caban wrote: Detlef Riekenberg wrote: I did a speed test for JS with Wine: http://v8.googlecode.com/svn/data/benchmarks/v3/run.html Personally I don't see much point in looking for benchmarks as long as we have so many real applications that don't

Re: Use environment variable WINE_NO_MENU_ENTRIES to prevent menu icon and menu entry creation.

2009-02-06 Thread Detlef Riekenberg
On Do, 2009-02-05 at 18:02 +0100, Christoph Korn wrote: int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show) { +if(getenv(WINE_NO_MENU_ENTRIES)) +{ +return 0; +} + LPSTR token = NULL, p; Declaring a variable after code is C99 and

wine iexplore speed test (JavaScript)

2009-02-05 Thread Detlef Riekenberg
I did a speed test for JS with Wine: http://v8.googlecode.com/svn/data/benchmarks/v3/run.html wine 17666004c839a40f1dbc5c98468557091bf3e13c Score: 48.5 Richards: 47.7 DeltaBlue: 56.3 Crypto: 32.1 RayTrace: 54.9

Re: Quick and dirty testcases for MS-DOS API?

2009-02-04 Thread Detlef Riekenberg
On Do, 2009-01-29 at 14:30 -0800, Dan Kegel wrote: but that requires the Watcom C compiler, and apt-cache search watcom still comes up empty There is a package with an installer: http://www.openwatcom.org/ftp/open-watcom-c-linux-1.8RC3 THe release link in the near feature might be:

Re: Fixing AppDB once and for all

2009-02-03 Thread Detlef Riekenberg
On Di, 2009-02-03 at 12:19 -0700, James Mckenzie wrote: What I feel is necessary at this point is to collect who lives in what time zone so that we incovience as few people as possible. I added a TZ column long ago, when the developer list was on the Fontpage. The infos are now here:

Re: [PATCH] winspool.drv: Check return value of EnumPrintersA

2009-02-01 Thread Detlef Riekenberg
On Sa, 2009-01-31 at 11:09 +0100, Marcus Meissner wrote: -EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, NULL, 0, needed, num); -if(needed) { +if (EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, NULL, 0, needed, num) needed) { EnumPrinterA must always update needed. nedded is 0, when

Re: libs/wine/Makefile.in: replace `wine` with @PACKAGE_NAME@

2009-01-17 Thread Detlef Riekenberg
On Sa, 2009-01-17 at 14:24 +0300, Vitaly Lipatov wrote: В сообщении от 16 января 2009 Detlef Riekenberg написал(a): On Fr, 2009-01-16 at 20:51 +0300, Vitaly Lipatov wrote: - version=`(GIT_DIR=$(TOPSRCDIR)/.git git describe HEAD 2/dev/null || echo wi...@package_version@) | sed -n -e

Re: Debian packages of Wine

2009-01-16 Thread Detlef Riekenberg
On Fr, 2009-01-16 at 07:11 +, Paul Bryan Roberts wrote: I'm puzzled by the sizes of the packages. Packages for Debian by Maurilio and James are 13-14 Mb to download whereas Ubuntu packages by Scott are only 7-8 Mb. Anyone see any reason for this ? deb support different compression

Re: libs/wine/Makefile.in: replace `wine` with @PACKAGE_NAME@

2009-01-16 Thread Detlef Riekenberg
On Fr, 2009-01-16 at 20:51 +0300, Vitaly Lipatov wrote: - version=`(GIT_DIR=$(TOPSRCDIR)/.git git describe HEAD 2/dev/null || echo wi...@package_version@) | sed -n -e '$$s/\(.* \)/const char wine_build[] = \1;/p'` (echo $$version | cmp -s - $@) || echo $$version $@ || ($(RM) $@ exit 1)

Re: [dxdiagn] Implemented retrieval of b3DAccelerationEnabled property

2009-01-12 Thread Detlef Riekenberg
On Mo, 2009-01-12 at 09:50 -0700, Vitaliy Margolen wrote: +LPCSTR searchSubKey = SOFTWARE\\Microsoft\ \DirectDraw; +LPCSTR dataSubKey = EmulationOnly; I don't see anywhere Wine using this key. How did you came up with this key? That was me. On his

Re: richedit: Added tests to show that options are stored internally.

2009-01-11 Thread Detlef Riekenberg
On So, 2009-01-11 at 02:58 -0500, Dylan Smith wrote: Hi Dylan. First of all, thanks for working on riched* +/* EM_SETOPTIONS changes the window style, but changing the + * window style does not change the options. */ +dwStyle = GetWindowLongW(hwndRichEdit, GWL_STYLE); Almost all

Re: richedit: Added tests for autoscrolling options based on WS_V/HSCROLL.

2009-01-11 Thread Detlef Riekenberg
On So, 2009-01-11 at 02:58 -0500, Dylan Smith wrote: It seems as if the autoscrolling options can be set based on whether WS_VSCROLL or WS_HSCROLL styles are used to create the window, but this is done differently between version 1.0 and 3.0 of the richedit control. I noticed this indirectly

Re: Implementing b3DAccelerationExists and b3DAccelerationEnabled in dxdiagn

2009-01-07 Thread Detlef Riekenberg
On Di, 2009-01-06 at 22:47 -0500, Markus wrote: can anyone tell me where to find information about the b3DAccelerationExists and b3DAccelerationEnabled properties in the display container returned by I suggest to use dxdiag and regmon on Windows. In dxdiag, you can disable

Re: Implementing b3DAccelerationExists and b3DAccelerationEnabled in dxdiagn

2009-01-06 Thread Detlef Riekenberg
On Mo, 2009-01-05 at 22:10 -0500, Markus wrote: can anyone tell me where to find information about the b3DAccelerationExists and b3DAccelerationEnabled properties in the display container returned by I suggest to use dxdiag and regmon on Windows. In dxdiag, you can disable DirectDraw /

Re: Henri Verbeet : secur32: Handle SECPKG_ATTR_STREAM_SIZES in schan_QueryContextAttributesW().

2008-12-29 Thread Detlef Riekenberg
On Mo, 2008-12-29 at 19:21 +0100, Christian Costa wrote: Compilation failed here (FC8), I got this error : gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2

Re: Implementing dxdiag as student project?

2008-12-28 Thread Detlef Riekenberg
On Sa, 2008-12-27 at 23:20 -0800, Dan Kegel wrote: Hi folks, it seems odd to me that Wine doesn't have a tool like dxdiag yet. We often have people complain that graphics aren't working, and we have to ask them to do things like run glxgears as diagnostics. Would it make sense to implement

RE: d3d9/tests: Don't create a Null-shader in d3d9, it will crash.

2008-12-23 Thread Detlef Riekenberg
On Di, 2008-12-23 at 14:24 +0100, Stefan Dösinger wrote: I'm only afraid of this hypothetical scenario: 1) We remove a test because it breaks on $NONSTANDARDWINDRV We disable the test with: if (0) { /* that crash on $NONSTANDARDWINDRV */ full test here } 3) Some

Re: Did anyone have any trouble compiling wine today? Or was it just me ....

2008-11-30 Thread Detlef Riekenberg
On Sa, 2008-11-29 at 18:53 -0600, Austin English wrote: gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_NTSYSTEM_ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o serial.o serial.c

Re: Regarding ./configure file

2008-11-22 Thread Detlef Riekenberg
On Fr, 2008-11-21 at 10:57 -0800, Juan Lang wrote: I thought that if you want to add anything to wine you: 1 - simply add it to git 2 - ./tools/make_makefiles 3 - autoconf 4 - ./configure 5 - make depend make Is this wrong? Yes. On occasion we need to add or improve checks

Re: OLEAUT32: implement OleLoadPictureFile(Ex) and add tests

2008-11-14 Thread Detlef Riekenberg
On Mi, 2008-11-12 at 23:40 -0800, Jeremy Drake wrote: I have no Idea about that area, but the unicode API is not implemented on win9x (GetTempFileNameW, CreateFileW, DeleteFileW) if(!pOleLoadPictureFile || !pOleLoadPictureFileEx) Are there systems in the Wild that have OleLoadPictureFile, but

Re: OLEAUT32: implement OleLoadPictureFile(Ex) and add tests

2008-11-14 Thread Detlef Riekenberg
On Fr, 2008-11-14 at 21:17 +0100, Detlef Riekenberg wrote: On Mi, 2008-11-12 at 23:40 -0800, Jeremy Drake wrote: if(!pOleLoadPictureFile || !pOleLoadPictureFileEx) Are there systems in the Wild that have OleLoadPictureFile, but are missing OleLoadPictureFile? In that case, you should use 2

Make Wine and the tests dpi aware

2008-11-12 Thread Detlef Riekenberg
Wine use some fixed values for calculating gui elements, and hopefully the current values are verified with tests. The tests works in Windows, but only with the default settings: 96 dpi (Small Fonts / Kleine Schriften) and the default theme. It would be a good idea to run the tests also for

Re: [ddraw/tests] Fix a test on W2K3

2008-11-05 Thread Detlef Riekenberg
On Di, 2008-11-04 at 10:25 -0800, chris ahrendt wrote: Actually as of 6.5 of VMWARE direct draw 9c is 100% supported. So why couldn't we use vmware 6.5 as a valid platform for testing direct draw api's? When our tests use valid data but received an E_NOTIMPL, then DirectX 9c in VMWare

Re: wininet: let automated testers force all DNS lookups to return localhost

2008-11-03 Thread Detlef Riekenberg
On So, 2008-11-02 at 10:58 -0800, Dan Kegel wrote: This approach won't help users of the Wine conformance tests running on Windows, Sure it would; just make the test server setup script run on cygwin properly. require an installed cygwin is broken by design. winetest.exe is a standalone

Re: does anyone else's windows 98 machine not survive the user32 msg test?

2008-10-29 Thread Detlef Riekenberg
On So, 2008-10-26 at 22:31 -0500, Vincent Povirk wrote: After I run user32_crosstest msg on my windows 98 virtual machine in qemu, it no longer responds to any mouse input (the cursor moves and changes, but clicking has no effect) Does this happen to anyone else, especially on a windows 98

Re: mscms: quiet a noisy fixme (1/3)

2008-10-17 Thread Detlef Riekenberg
On Do, 2008-10-16 at 19:44 -0500, Austin English wrote: +if (quietfixme == 0) +{ +FIXME(unhandled bitmap format\n); Such a FIXME has no useful information. You should also dump the unhandled bitmap format in the FIXME +quietfixme = 1; +

Re: gdi32: Add job name field into CreateSpoolFile

2008-10-17 Thread Detlef Riekenberg
On Mo, 2008-10-13 at 12:29 +0400, Konstantin Kondratyuk wrote: -sprintf(psCmd,|lpr -P'%s',pszOutput+4); +sprintf(psCmd,|lpr -T %s -P'%s',pszTitle,pszOutput+4); This is broken, when there is a space in the Title. -- By by ... Detlef

Re: shdocvw: [Patch 1/2] Implement URLSubRegQueryA [Resend]

2008-10-15 Thread Detlef Riekenberg
On Mi, 2008-10-15 at 16:53 +0200, Alexandre Julliard wrote: Detlef Riekenberg [EMAIL PROTECTED] writes: +len = sizeof(buffer); +res = SHRegGetUSValueA(regpath, name, NULL, buffer, len, FALSE, NULL, 0); +if (!res) { +lstrcpynA(out, buffer, outlen

Re: PrintDlgEx [2/7]: Add basic dialog.

2008-09-19 Thread Detlef Riekenberg
On Do, 2008-09-18 at 09:58 +0200, Michael Stefaniuc wrote: there is no point in adding new resources in English to the other languages rc files. If a resource doesn't exist Win32 will automatically fail over to use the en_US version. According to julliard a while ago, this is not the case.

Re: d3dx9_36: Fix the tests for native Windows.

2008-09-10 Thread Detlef Riekenberg
On Mi, 2008-09-10 at 18:16 +0200, Tony wrote: Hi, At least for all Windows versions below Vista, the d3dx9 importlib does exist (and d3dx9_36 does not), I installed a recent dx9-runtime on my w2k test system, but a d3dx9.dll is not present (d3dx9_36.dll exist). I get always a blocking popup,

Re: Patchwatcher online

2008-09-09 Thread Detlef Riekenberg
On Fr, 2008-09-05 at 10:24 -0700, Dan Kegel wrote: The results page http://kegel.com/wine/patchwatcher/results/ looks nice and green; Opps, all developer send there Patches in September with 09 as minute, and in August with 08 ... :-) And it would be very nice, when you hide the

splint (Re: Adding Flawfinder to Patchwatcher)

2008-09-09 Thread Detlef Riekenberg
On So, 2008-09-07 at 18:10 +, Jason Spiro wrote: Other people may be able to suggest more good tools. AFAIK splint is one of the most popular OSS static analysis tools, but I've never really used it. Has anyone here used it? On the flawfinder homepage, it says that splint does

Re: [crypt32/tests] Use CryptAcquireContextA instead of CryptAcquireContextW

2008-08-26 Thread Detlef Riekenberg
On Mo, 2008-08-25 at 22:16 +0200, Paul Vriens wrote: static BOOL (WINAPI * pCryptAcquireContextA) (HCRYPTPROV *, LPCSTR, LPCSTR, DWORD, DWORD); -static BOOL (WINAPI * pCryptAcquireContextW) -(HCRYPTPROV *, LPCWSTR, LPCWSTR, DWORD, DWORD);

Re: [10/10] WineX11: add a run-total fps counter to the fps debug channel

2008-08-26 Thread Detlef Riekenberg
On Mo, 2008-08-25 at 09:32 -0500, Stefan Dösinger wrote: @@ -3486,15 +3486,19 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) /* FPS support */ if (TRACE_ON(fps)) { - static long prev_time, frames; + static long prev_time, start_time; + static unsigned long

Re: winetricks: add ie6 verb

2008-08-23 Thread Detlef Riekenberg
On Mo, 2008-08-18 at 13:11 -0400, Steven Edwards wrote: +load_ie6() { Nice Idea. +# Installing Core Fonts +load_corefonts Which Font is required (please fill bug reports) Which Font is optional? +# Installing Richedit 2.0 Library +load_riched20 What is needed in the builtin

Re: ntdll/file: Add sub-second resolution to NtQueryInformationFile

2008-08-18 Thread Detlef Riekenberg
On So, 2008-08-17 at 19:03 +0200, Michael Karcher wrote: --- configure | 303 +++ You should never include autogenerated code in a Patch. This will reduce the risk, that your Patch does not apply after a different Patch was commited.

Re: rpcrt4: [1/2] Improve stub for I_RpcBindingInqTransportType, with test

2008-08-10 Thread Detlef Riekenberg
On So, 2008-08-10 at 12:21 +0900, Dmitry Timoshkov wrote: + /* NT: RPC_S_NO_CONTEXT_AVAILABLE, 9x: RPC_S_NO_CALL_ACTIVE */ + if (!Binding) return RPC_S_NO_CONTEXT_AVAILABLE; According to your test this should be if (!Binding || !Type) return RPC_S_NO_CONTEXT_AVAILABLE; No, your

Re: [1/11] ole32 : basic inprocess handler implentation

2008-08-09 Thread Detlef Riekenberg
On Do, 2008-08-07 at 15:45 +0200, [EMAIL PROTECTED] wrote: This patch modifies the Makefile.in file to include some new file to be compile - You must use your real name - Wine must compile after every Patch. You need to add the changes for Makefile.in, when you add a file - Why do you need

Re: debugging applications Re: Networking problems with IDU Verwaltung software

2008-08-09 Thread Detlef Riekenberg
On Fr, 2008-08-08 at 16:51 +0200, Werner LEMBERG wrote: Investigate the RelayInclude and RelayExclude string values in [HKCU\Software\Wine\Debug] if you're being overwhelmed by certain functions. [...] I suppose this is a registry entry, right? Yes. HKCU (or HCU) is:

Re: DIB engine status

2008-08-09 Thread Detlef Riekenberg
On Fr, 2008-08-01 at 12:56 +0100, Huw Davies wrote: Hi folks, Here's an update on the DIB engine that I've been working on for the last few months. This work has been made possible by the generosity of Google - so thanks go to them and of course to Dan. You can find the code at

Re: taskmgr: Add full translation [1/2]

2008-07-20 Thread Detlef Riekenberg
On So, 2008-07-20 at 22:58 +0500, Vladimir Pankratov wrote: First of all, your Idea is great, but your Patch is far to large. Please move only some strings (usual is from one source file) to the resources at once. Then you must keep the resources in sync. That means, when you move one string to

Re: programs: add rudimentary dxdiag

2008-07-06 Thread Detlef Riekenberg
On Mi, 2008-07-02 at 23:02 +, Louis Lenders wrote: so for now i'd have to guess : 1. no need for a dxdiag in wine 2. my patches are too crappy to respond to. In both cases it's useless to leave thebug i opened for missing dxdiag open, so i'll abandon it (bug 14118) Louis, please do

Re: richedit: do not read actual scrollbar state for scrollbar update, use internal state instead (RESEND)

2008-07-06 Thread Detlef Riekenberg
On Fr, 2008-07-04 at 16:32 -0500, Alex Villací­s Lasso wrote: Resending. Please comment on this patch.  dlls/riched20/editor.c | 21 ++ dlls/riched20/editstr.h |3 + dlls/riched20/paint.c| 36 ++- dlls/riched20/tests/editor.c | 794

Re: Alternate shell?

2008-07-06 Thread Detlef Riekenberg
On Do, 2008-05-22 at 15:16 -0700, Dan Kegel wrote: For a maximal dogfood experience, I was looking around for a way to use a replacement Windows shell with Wine as my desktop environment instead of gnome or kde. Wow. So far, all the ones I've found are either broken, hard to use, or just

Re: [UPDATE] shell32: Check registry entry for cpl files (in standard control panel)

2008-07-03 Thread Detlef Riekenberg
On Do, 2008-07-03 at 08:45 -0700, Juan Lang wrote: Well, technically, they would be registered in the [mmcpl] section of control.ini, which is then mapped in the registry (snip) I could add a check for CPL entries in control.ini if desired using the GetPrivateProfileSection function, and

Re: programs: add rudimentary dxdiag

2008-07-01 Thread Detlef Riekenberg
On Mo, 2008-06-30 at 10:15 -0500, Austin English wrote: Instead of simple stub, this patch also adds the (simplified) d3d test like seen in native dxdiag, so users can test if their d3d is setup correctly. Screenshot can be seen here: http://bugs.winehq.org/attachment.cgi?id=14342

Re: quartz Rewrite the avi splitter so that video and sound run in separate threads, with tests

2008-06-28 Thread Detlef Riekenberg
On Do, 2008-06-26 at 22:58 -0700, Maarten Lankhorst wrote: there are still some things I need to figure out with avi. Is avifil32.dll usable for that? Does Windows reuse avifil32.dll or did MS again lots of code duplication? The current Problem in Wine is the correct importlib: avicap32 +

Re: [6/7] gdiplus: Implemented GdipGetPathData with test

2008-06-26 Thread Detlef Riekenberg
Hi Nikolay: +pathData-Points = GdipAlloc(sizeof(PointF) * pathData-Count); +if(!pathData-Points) +return OutOfMemory; + +pathData-Types = GdipAlloc(pathData-Count); +if(!pathData-Points) Greetings from Copy Paste pathData-Points = pathData-Types +

Re: quartz Rewrite the avi splitter so that video and sound run in separate threads, with tests

2008-06-26 Thread Detlef Riekenberg
On Mi, 2008-06-25 at 21:34 -0700, Maarten Lankhorst wrote: Because of the magnitude of the change I cannot split this patc hup, my apologies for this. Without any view at your code, the sentense above is wrong by design. A Test is always independant from the implementation, and what permit a

Re: ok lets try this yet again

2008-06-26 Thread Detlef Riekenberg
On Do, 2008-06-26 at 14:38 -0400, [EMAIL PROTECTED] wrote: I have no Idea about the touched code, but still some more hints: You must use your real name +WineD3D_PixelFormat *cfgs = This-adapter-cfgs; +BOOL exactDepthMatch = FALSE; /*Changed june 23,08 */ +

Revert winspool.drv: Make sure the printer driver registry entry exists.

2008-06-24 Thread Detlef Riekenberg
On Di, 2008-06-24 at 10:25 -0700, Dan Kegel wrote: Today I started getting a heap corruption and crash in localspl: ... Anyone know what's up with that? That was introduced by Huw (added a circular dependance). Changelog: Revert winspool.drv: Make sure the printer driver registry entry

how to run wine under a different language

2008-06-23 Thread Detlef Riekenberg
On Mo, 2008-06-23 at 02:41 -0400, Filipe Ferreira wrote: (Anyone care to share how to run wine under a different language?) - Install the language - Select the language from locale -a LC_ALL=de_DE.utf8 wine winecfg LC_ALL=en_US.utf8 wine winecfg LC_ALL=it_IT.utf8 wine winecfg -- By by

Re: 'Interactive' tests on Windows 2003

2008-06-22 Thread Detlef Riekenberg
On Fr, 2008-06-13 at 13:04 -0500, James Hawkins wrote: Do you think we should add a check for winetest_interactive Possible, but that skip the test before the calls that bring up the permission dialog? If anyone else knows of a better way, let us know. Add a CBT-Hook and force the

Re: Website down

2008-06-22 Thread Detlef Riekenberg
On Mi, 2008-06-18 at 09:51 -0600, Brian Vincent wrote: Sure: http://www.winehq.org/webalizer -Brian On Tue, Jun 17, 2008 at 8:27 PM, Hin-Tak Leung [EMAIL PROTECTED] wrote: Just for geek value, is it possible to have a graph of how the slashdot effect look like? I

Re: Bugs in Wine research

2008-06-14 Thread Detlef Riekenberg
On Di, 2008-05-27 at 15:11 +0200, [EMAIL PROTECTED] wrote: the complete results are available at http://www.cs.aau.dk/~dechouxb/results/complete/, The requested URL /~dechouxb/results/complete/ was not found on this server. Thanks for helping Wine -- By by ... Detlef

Re: avifil32/tests: [2/2] Add a test for AVISaveOptions and fix thedetected crash

2008-05-25 Thread Detlef Riekenberg
On Sa, 2008-05-24 at 12:06 +0900, Dmitry Timoshkov wrote: Detlef Riekenberg [EMAIL PROTECTED] wrote: - for (; nStreams 0; nStreams--) { + for (nStreams--; nStreams = 0; nStreams--) { if (ppOptions[nStreams] != NULL) { ppOptions[nStreams]-dwFlags = ~AVICOMPRESSF_VALID

Re: Bison 2.1 / Solaris

2008-05-06 Thread Detlef Riekenberg
On Mo, 2008-05-05 at 23:55 -0500, Austin English wrote: [EMAIL PROTECTED]:~/wine$ bison --version bison (GNU Bison) 2.1 I used Wine ~2 Years on on Ubuntu Dapper without Problems. Bison in Dapper was 2.1: http://packages.ubuntu.com/dapper/devel/bison (I'm unable to verify the latest used

Re: winetest problems

2008-05-06 Thread Detlef Riekenberg
On Fr, 2008-05-02 at 18:38 -0500, James Hawkins wrote: i586-mingw32msvc-gcc advpack.cross.o files.cross.o install.cross.o testlist.cross.o -o advpack_crosstest.exe -lcabinet -ladvapi32 -lkernel32 /usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/bin/ld: cannot find

Re: [2/6] winspool/tests: Add tests for AddForm

2008-04-13 Thread Detlef Riekenberg
On So, 2008-04-13 at 02:18 +0200, Marcel Partap wrote: Subject: [PATCH] winspool/tests: Add tests for AddForm A test for AddForm / DeleteForm can't work with the stubs in our winspool.drv. The implementation is needed first. +SetLastError(MAGIC_DEAD); Plase do not use MAGIG_DEAD, it was a

Re: [3/6] winspool: Implement AddFormA/W for level 1 forms

2008-04-13 Thread Detlef Riekenberg
On So, 2008-04-13 at 02:18 +0200, Marcel Partap wrote: + * + * FIXME: no level 2 support + * */ BOOL WINAPI AddFormW(HANDLE hPrinter, DWORD Level, LPBYTE pForm) FIXME: is not a valid section in our API-Documentation Please use NOTES or BUGS -- By by ... Detlef

Re: [5/6] winspool: Implement DeleteFormA/W

2008-04-13 Thread Detlef Riekenberg
On So, 2008-04-13 at 02:18 +0200, Marcel Partap wrote: +formNameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)); +MultiByteToWideChar(CP_ACP, 0, pFormName, -1, formNameW, len); +return DeleteFormW(hPrinter, formNameW); Memory-leak: formnameW -- By by ... Detlef

Re: [2/2] winspool.drv: GetDefaultPrinterW reads the value from data in registry

2008-04-09 Thread Detlef Riekenberg
On Di, 2008-04-08 at 15:39 +0400, Konstantin Kondratyuk wrote: -if (!GetProfileStringW(windowsW, deviceW, emptyStringW, buffer, len)) +if(!RegOpenKeyW(HKEY_CURRENT_USER, user_default_reg_key, hKey) + !RegQueryValueExW(hKey, keyname, NULL, type, (LPBYTE)buffer, bufsize))

Re: Compile broken on Ubuntu Hardy/gutsy/feisty

2008-04-09 Thread Detlef Riekenberg
On Mi, 2008-04-09 at 12:08 -0500, Austin English wrote: In today's git, I can't compile in either my Kubuntu Hardy or Ubuntu feisty machines. A user also reported this on wine-user (1), using Ubuntu Gutsy (64bit). Compile is failing in make depend on: It's fixed in git. Mikolaj did a Patch

ntoskrnl.exe: [2/2][try 2] Implement KeQueryInterruptTime

2008-04-07 Thread Detlef Riekenberg
27c33c2db0bcf5260555b5362d2999f689b70006 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg [EMAIL PROTECTED] Date: Mon, 7 Apr 2008 21:15:46 +0200 Subject: [PATCH] ntoskrnl.exe: Implement KeQueryInterruptTime --- dlls/ntoskrnl.exe/ntoskrnl.c| 15 +++ dlls/ntoskrnl.exe/ntoskrnl.exe.spec |2 +- 2

Re: DLL exports... HELP?! (wine based win32 printer drivers for openprinting)

2008-03-30 Thread Detlef Riekenberg
On Sa, 2008-03-29 at 15:51 +, Hin-Tak Leung wrote: - The ddiwrapper-hack works only with a very small amount of self-contained drivers Yes, but say, a GSOC project for distinguishing which are self-contained and which are not? Only Usermode Printer Drivers (w2k and above) can work (NT4

wine based win32 printer drivers

2008-03-30 Thread Detlef Riekenberg
On So, 2008-03-30 at 06:03 +0200, Marcel Partap wrote: Anyways, I am working on getting something merged.. Great! For now the target is to get the Adobe pscript5 driver working which has its own raster renderer and thus does not depend on the dib engine. A Postscript Driver has no raster

Re: DLL exports... HELP?! (wine based win32 printer drivers for openprinting)

2008-03-28 Thread Detlef Riekenberg
On Mi, 2008-03-26 at 14:47 +, Hin-Tak Leung wrote: Wow :-). I have almost wanted to suggest such a native wine-based printer driver as a linux foundation/openprinting GOSC project (I am one of the mentors under the openprinting umbrella

Re: ntoskrnl.exe: Implement MmIsAddressValid (bug 11082)

2008-03-18 Thread Detlef Riekenberg
On Mo, 2008-03-17 at 16:46 -0800, Chris Robinson wrote: On Monday 17 March 2008 04:09:20 pm Detlef Riekenberg wrote: +(info.Protect (PAGE_READWRITE || PAGE_EXECUTE_READWRITE)) Did you mean | instead of || there? Opps. Will resend. Thanks for your hint. -- By by ... Detlef

Re: ntoskrnl.exe: Implement MmIsAddressValid (bug 11082)

2008-03-18 Thread Detlef Riekenberg
On Di, 2008-03-18 at 09:09 +0800, Dmitry Timoshkov wrote: Detlef Riekenberg [EMAIL PROTECTED] wrote: +len = VirtualQuery(VirtualAddress, info, sizeof(MEMORY_BASIC_INFORMATION)); + +if ((len == sizeof(MEMORY_BASIC_INFORMATION)) +(info.Protect (PAGE_READWRITE

Re: appdb request: Browse Regressions

2008-03-17 Thread Detlef Riekenberg
On So, 2008-03-16 at 07:30 -0700, Dan Kegel wrote: want to use the appdb itself to see which apps have recently fallen in rating. Nice Idea. Following past appdb practice, one would implement that by adding a new Browse Regressions menu item on the left, I created recently the Patch for

Re: compile fail on Linux Mint

2008-03-11 Thread Detlef Riekenberg
On Mo, 2008-03-10 at 22:35 -0700, Chad Harris wrote: /usr/bin/ld: crt1.o: No such file: No such file or directory You are missing the development-packages. The first is libc6-dev http://wiki.winehq.org/Recommended_Packages -- By by ... Detlef

Re: [2/2]try3.add new dll. wbemprox.dll

2008-03-07 Thread Detlef Riekenberg
On Fr, 2008-03-07 at 13:19 +0300, Ivan Sinitsin wrote: This patch add new library to the project wine. Name of the library is - wbemprox.dll. Since you read the Developer-Hints, you are now aware, that Makefile.in is wrong here. I have no Idea about COM, but you should studdy commits for new

Re: [1/2]try3. Add new dll. Wbemprox.dll

2008-03-07 Thread Detlef Riekenberg
On Fr, 2008-03-07 at 13:19 +0300, Ivan Sinitsin wrote: +++ configure.ac21 Feb 2008 13:19:10 - +++ Makefile.in 21 Feb 2008 13:21:30 - +++ dlls/Makefile.in21 Feb 2008 15:04:36 - This does not work. Please follow our guidelines about Implementing a new DLL:

Re: [AppDB] Add accessible link to front page

2008-02-27 Thread Detlef Riekenberg
On Mi, 2008-02-27 at 14:18 +0100, Alexander Nicolaysen Sørnes wrote: Add a 'home' link to the top of the AppDB menu to make the front page more accessible. $g = new htmlmenu(AppDB); +$g-add('Home', BASE.'index.php'); What is more accessible in AppDB - Home compared to WineHQ Menu -

Re: James Hawkins : itircl: Add a stub implementation of itircl.dll.

2008-02-21 Thread Detlef Riekenberg
On Sa, 2008-02-16 at 09:57 -0600, Alexandre Julliard wrote: Module: wine Branch: master Commit: 58b0686e951364686c3b5b55c18566df0960fd96 URL: http://source.winehq.org/git/wine.git/?a=commit;h=58b0686e951364686c3b5b55c18566df0960fd96 Author: James Hawkins [EMAIL PROTECTED] Date: Fri Feb

Re: James Hawkins : msi: Forward MsiSourceListEnumSourcesA to a stub implementation of MsiSourceListEnumSourcesW .

2008-02-20 Thread Detlef Riekenberg
On Mi, 2008-02-20 at 06:46 -0600, +/** + * MsiSourceListEnumSourcesA (MSI.@) + */ +UINT WINAPI MsiSourceListEnumSourcesW( Greetings from Copy Paste :-) BTW: Congratulations James for you new Address -- By by ...

Re: Autoplay considered harmful

2008-02-18 Thread Detlef Riekenberg
On Sa, 2008-02-16 at 11:09 -0500, Steven Edwards wrote: I was actually thinking about this today. The right method would be to use HAL notification events to prompt the user if they want to autorun when sticking a new cdrom in. There could even be warning text in the dialog so that if it pops

Re: [PATCH] Environment variable to specify X11 window for desktop

2008-02-17 Thread Detlef Riekenberg
On Fr, 2008-02-15 at 15:46 +, Robert Shearman wrote: Timothy Lee wrote: The attached patch allows the WINE desktop to be embedded within an existing X11 window, and is similar to the windowed mode in WINE. I'm struggling to imagine a case where the behaviour you've implemented is

Re: mscms: [GS]etColorSpace() are not supposed to be defined in icm.h.

2008-02-14 Thread Detlef Riekenberg
On Mi, 2008-02-13 at 21:52 +0100, Francois Gouget wrote: diff --git a/include/icm.h b/include/icm.h The end of the attached Patchfile is broken: #0;#0;#0;#0;#0;#0;#0;#;#0;#0;#0;#0;#0;#0; -- By by ... Detlef

Re: Building tests with Visual Studio 2005 Express

2008-02-06 Thread Detlef Riekenberg
On Mi, 2008-02-06 at 07:28 +, Reece Dunn wrote: On 06/02/2008, Dan Kegel [EMAIL PROTECTED] wrote: I tried Visual Studio 2005. Do you know where the Express download is for this, as I can only find VS 2008 Express? Download Page for Visual * 2005 Express Edition:

Re: commdlg: PrintDlg16: Handle print quality combobox (try2)

2008-01-30 Thread Detlef Riekenberg
On Mi, 2008-01-30 at 13:48 +0100, Alexander Nicolaysen Sørnes wrote: + printf(CCC %d\n, lpdm-u1.s1.dmPrintQuality); This looks like debug code -- By by ... Detlef

Mail flood from the uncoordinated bugzilla cleanup

2008-01-29 Thread Detlef Riekenberg
Grrr. Please remember, that some Free Mail accounts have a limit in the numbers of Mails. The flood was to fast to stop Mail-delivery in wine-bugs. After i stopped Mail-delivery in wine-bugs, the sending queue was still so full, that my Mailbox got flood again and the bounce rate reached the

Re: RegOverridePredefKey stub

2008-01-27 Thread Detlef Riekenberg
On So, 2008-01-27 at 14:35 +0100, Jens Nestler wrote: Please apply the attached patch for a stub implementation. Please send patches to [EMAIL PROTECTED] Thanks. -- By by ... Detlef

Re: gdi32: Add tests for GetICMProfile and SetICMMode.

2008-01-21 Thread Detlef Riekenberg
On Mo, 2008-01-21 at 16:33 +0100, Hans Leidekker wrote: +static void test_GetICMProfileA( HDC dc ) Please check GetLastError() as much as possible (Add comments, when GetLastError() does not return something usable +size = MAX_PATH; +ret = GetICMProfileA( dc, size, NULL ); +

Re: gdi32: Make GetICMProfile behave more like native. Rewrite ansi version as a wrapper and move color management functions to their own file.

2008-01-21 Thread Detlef Riekenberg
On Mo, 2008-01-21 at 16:33 +0100, Hans Leidekker wrote: - gdi32: Make GetICMProfile behave more like native. Rewrite ansi version as a wrapper and move color management functions to their own file. The large subject is an indicator, that the Patch can be splitted. IMHO, moving the stubs to a

Re: bugzilla component and keyword cleanup

2008-01-17 Thread Detlef Riekenberg
On So, 2008-01-06 at 17:55 +0100, Jan Zerebecki wrote: I'm done with one step of the changes. Improvement suggestions are welcome. Please add printing as keyword and wineps as component Thanks -- By by ... Detlef

Re: New bugzilla components.

2007-12-16 Thread Detlef Riekenberg
On So, 2007-12-16 at 13:46 +0800, Dmitry Timoshkov wrote: Vitaliy Margolen [EMAIL PROTECTED] wrote: Unless we want to list most of the subsystems in keywords, that span small parts of multiple dlls. In the vast majority of cases a bug belongs to a particular DLL, not a group of DLLs, in

Re: bits: Added framework for testing the BackgroundCopyJob interface (25/27)

2007-11-18 Thread Detlef Riekenberg
On Fr, 2007-11-16 at 16:21 -0800, Roy Shea wrote: +/* Generic test setup */ +static BOOL setup(void) unused code +/* Generic test cleanup */ +static void teardown(void) unused code +START_TEST(job) +{ +CoInitialize(NULL); +CoUninitialize(); +} Do you want to call setup() and

Re: bits: INF and resource file for qmgr registration (8/27)

2007-11-18 Thread Detlef Riekenberg
On Fr, 2007-11-16 at 16:16 -0800, Roy Shea wrote: dlls/qmgr/qmgr.inf | 32 dlls/qmgr/rsrc.rc | 21 + 2 files changed, 53 insertions(+), 0 deletions(-) The change for Makefile.in to add rsrc.rc is missing here. (found in the next

Re: [PATCH] bits: Add implementation of BITS_IClassFactory_CreateInstance (9/12)

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 08:24 -0800, Roy Shea wrote: Implementation of BITS_IClassFactory_CreateInstance ond the support function BackgroundCopyManagerConstructor. --- dlls/Makefile.in |5 + + qmgrprxy \ + qmgrprxy/libqmgrprxy.$(IMPLIBEXT) \ This changes are

Re: [PATCH] bits: Added BITS IDL and standard header file (3/12)

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 08:21 -0800, Roy Shea wrote: +++ b/include/bitsmsg.h @@ -0,0 +1,83 @@ +/* + * Return values that may be generated by BITS as described at: + * http://msdn2.microsoft.com/en-us/library/aa362823.aspx We want to remove all links to MSDN from wine (the URL changes to

Re: [1/6] try 2: msvcrt: Implement strcpy_s

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 17:35 +0100, Stefan Dösinger wrote: +memset(dest, 'X', sizeof(dest)); +ret = pstrcpy_s(dest, sizeof(dest), small); +ok(ret == 0, Copying a string into a big enough destination returned %d, expected 0\n, ret); +ok(dest[0] == 's' dest[1] == 'm' dest[2] ==

Re: [PATCH] bits: Implemented BITS_IBackgroundCopyManager_Release and Test (12/12)

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 08:24 -0800, Roy Shea wrote: dlls/qmgr/qmgr.c| 19 ++- dlls/qmgr/qmgr.spec |4 +- dlls/qmgr/tests/Makefile.in | 17 ++ dlls/qmgr/tests/qmgr.c | 50 +++ 4 files changed, 86

Re: [PATCH] bits: Stub version of qmgr with svchost and proxy (5/12)

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 08:22 -0800, Roy Shea wrote: This adds svchost, proxying, and a stub version of the qmgr.dll process. The functional code in this patch is boilerplate required to run a DLL as a service via svchost. --- dlls/qmgr/Makefile.in |6 ++- dlls/qmgr/factory.c

Re: [3/6] try 2: msvcrt: implement _mbsnbcpy_s

2007-11-15 Thread Detlef Riekenberg
On Do, 2007-11-15 at 17:37 +0100, Stefan Dösinger wrote: +const unsigned char small[] = small; +int ret; +memset(dest, 'X', sizeof(dest)); +ret = p_mbsnbcpy_s(dest, sizeof(dest), small, sizeof(small)); +ok(ret == 0, _mbsnbcpy_s: Copying a string into a big enough

<    1   2   3   4   5   6   >