Re: Speed/latency issues for development in a Wine environment

2010-06-20 Thread Jeff Zaroyko
On Sun, Jun 20, 2010 at 1:46 PM, Alan W. Irwin wrote: > > So for mingw32-make our wine startup latencies are essentially identical > (near 150 ms) and substantially worse than the Windows numbers (30 ms) and > much worse than the Linux numbers (~1 ms).  "make" startup latency matters > for builds

RFC: Patch to add EM_FINDWORDBREAK tests

2010-06-20 Thread James McKenzie
All: While working on a problem with The Sword (a bible program), I noticed that an empty yellow box kept appearing. I then ran the program from the terminal and up popped what looked like a never ending stream of EM_FINDWORDBREAK stub entries. A further investigation (with Google's help) r

Re: *_queue.php files in AppDB

2010-06-20 Thread Alexander Nicolaysen Sørnes
They are wrapper classes for submitting and processing new entries to the AppDB. When submitting an entry, such as a version, we also need a testData entry, maybe also a maintainer, downloadurl, monitor, or distribution entry. This is handled in the _queue clases. Alexander N. Sørnes Manda

Re: richedit: Add WB_ISDELIMITER value to richedit.h

2010-06-20 Thread James McKenzie
Dylan Smith wrote: On Sun, Jun 20, 2010 at 6:00 PM, James McKenzie mailto:jjmckenzi...@earthlink.net>> wrote: While looking for implementation guidance at google.com , came across the value for WB_ISDELIMITER which was not in richedit.h. This patch adds this valu

*_queue.php files in AppDB

2010-06-20 Thread Alexandru Băluț
Hi, Why exactly are these AppDB files needed? ./include/testData_queue.php ./include/version_queue.php ./include/application_queue.php Thanks, Alex

Help wanted for bug#3023

2010-06-20 Thread Eliot Blennerhassett
Greetings, I'm hoping to get some with disposing of http://bugs.winehq.org/show_bug.cgi?id=3023 Short summary: Commenting line 934 of dlls/user32/dialog.c in EndDialog makes OrCad (electronic schematic cad package) usable (otherwise several essential functions don't work) EndDialog( HWND hwnd, I

Help wanted re Bugzilla#3023 (one line fix for Orcad add new elements)

2010-06-20 Thread Eliot Blennerhassett
Greetings, Help wanted Re: http://bugs.winehq.org/show_bug.cgi?id=3023 Short summary: Commenting line 934 of dlls/user32/dialog.c in EndDialog makes OrCad usable. EndDialog( HWND hwnd, INT_PTR retval ) { ... // comment the following line if (hwnd == GetActiveWindow()) WINPOS_ActivateOtherWindow(

Re: richedit: Add WB_ISDELIMITER value to richedit.h

2010-06-20 Thread Dylan Smith
On Sun, Jun 20, 2010 at 6:00 PM, James McKenzie wrote: > While looking for implementation guidance at google.com, came across the > value for WB_ISDELIMITER which was not in richedit.h. This patch adds this > value which will be necessary for full implementation of this function. > > WB_LEFT, WB_

Re: Release plans

2010-06-20 Thread wylda
Hi, another week and Sunday gone, but this time i tried to look a bit closely to the numbers... 340 regressions <-- release announcement 356 regressions <-- release announcement + 1week 339 regressions <-- release announcement + 2weeks(rc1) 322 regressions <-- release announcement + 3weeks(rc2) 3

Re: WineSkin v0.01

2010-06-20 Thread Michael Mc Donnell
On Fri, Jun 18, 2010 at 9:47 PM, ryan woodsmall wrote: >> Hi All, >> >> I just wanted to highlight my new project - WineSkin >> >> http://www.airwebreathe.org.uk/wineskin/ > > Might want to rethink the name: > > http://wineskin.doh123.com/Information.html How about the name WineLooks instead of w

Re: New flags in LoadLibraryEx

2010-06-20 Thread Juan Lang
Hi Mariusz, > if( flags & LOAD_IGNORE_CODE_AUTHZ_LEVEL ) >    FIXME("unsupported flag: LOAD_IGNORE_CODE_AUTHZ_LEVEL\n"); > > if( flags & LOAD_LIBRARY_AS_IMAGE_RESOURCE ) >    FIXME("unsupported flag: LOAD_LIBRARY_AS_IMAGE_RESOURCE\n"); > > if( flags & LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE ) { >    FI

New flags in LoadLibraryEx

2010-06-20 Thread Mariusz Pluciński
Hello, wine-devel It seems, that Microsoft introduced new flags for kernel32.LoadLibraryEx function, which are not yet available in Wine. Those flags are: LOAD_IGNORE_CODE_AUTHZ_LEVEL, LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE, LOAD_LIBRARY_AS_IMAGE_RESOURCE and LOAD_LIBRARY_REQUIRE_SIGNED_TARGET. Most

Re: Addition of En resources to non-En resources

2010-06-20 Thread James McKenzie
Dmitry Timoshkov wrote: James McKenzie wrote: Another good reason to drop .rc files and go with the po flow... Not really. If you'd know what stuff the .rc files contain you wouldn't do such claims. The .rc files can't go away in general. James, please learn subject before commenting

Re: DIBEngine and gdi32/user32 controls drawing loop performance

2010-06-20 Thread James McKenzie
Amico Amico wrote: Hello, since I had a poor performance in drawing many buttons and text input fields at the same time into a window with wine, I applied the DIBEngine patch (http://wiki.winehq.org/DIBEngine) that is available for wine 1.1.44 (http://bugs.winehq.org/attachment.cgi?id=27879) t

DIBEngine and gdi32/user32 controls drawing loop performance

2010-06-20 Thread Amico Amico
Hello, since I had a poor performance in drawing many buttons and text input fields at the same time into a window with wine, I applied the DIBEngine patch (http://wiki.winehq.org/DIBEngine) that is available for wine 1.1.44 (http://bugs.winehq.org/attachment.cgi?id=27879) to the 1.1.44

Re: [RFC] gameux.dll implementation stub [try 2]

2010-06-20 Thread Henri Verbeet
2010/6/19 Vincent Povirk : > I would change the second argument type of the instance creation > functions to IUnknown**. When I see an LPVOID* argument on a > COM-related function, I immediately expect to see a REFIID argument > and a QueryInterface somewhere in the function. Actually, when I see