Displaying 4 results from an estimated 4 matches for "dwstyle".
Did you mean:
dmstyle
2001 Feb 04
1
Hey ! thanks ! Flash 5 works now ... for short ... :(
...; setwindowlong
is outdated, but u can fix it by hand,
if u open win.c ; go to line 2032 ( case GWL_STYLE: )
and than change the code between 'case GWL_STYLE:'
and 'if (wndPtr->flags & WIN_ISWIN32)'
into :
case GWL_STYLE:
// style.styleOld = wndPtr->dwStyle;
// newval &= ~(WS_CHILD); /* this bit can't be changed this way */
// style.styleNew = newval | (style.styleOld & (WS_CHILD));
/* FIXME: this part originally prevented you from
modifying
* WS_VISIBLE and WS_CHILD flags.
* However...
2001 May 15
2
WTLIB99 with wine-010510 tar ball broken again
...found by Gerard Patel).
+
the patch:
diff -u -r ./wine-20010510/dlls/x11drv/window.c
./wine-20010511/dlls/x11drv/window.c
--- ./wine-20010510/dlls/x11drv/window.c
Mon May 14 16:48:08 2001
+++ ./wine-20010511/dlls/x11drv/window.c
Mon May 14 17:48:00 2001
@@ -398,8 +398,9 @@
dwStyle = wndPtr->dwStyle;
- pWndParent = parent ? WIN_FindWndPtr(parent) : WIN_GetDesktop();
- if (!pWndParent)
+ if (!parent) parent = GetDesktopWindow();
+
+ if (!(pWndParent = WIN_FindWndPtr(parent)))
{
WIN_ReleaseWndPtr( wndPtr );
return 0;
When I revert to the...
2001 Feb 01
2
Transgaming, Install Shield, and the dead horse
"Geoffrey L. Hausheer" wrote:
>
> So not to beat a dead horse or anything, but after seeing Gavriel's note
> that InstallShield was working in the latest Transgaming patch (I have no
> need of the Direct3d stuff, but I was not able to find any relevant pattches
> by Andreas on PATCHES), I installed the patch, and tried out installing
> MediaPlayer yet again, and
2008 Mar 07
0
Wine release 0.9.57
...key isn't set on Windows, so we shouldn't set it either.
comctl32: Fix the signedness of i, oldNumParts and nTipCount in STATUSBAR_SetParts.
comctl32: Fix local variable shadowing in load_string by moving len to the block in which it is actually used.
comctl32: Rename the dwStyle and dwOldStyle variables in LISTVIEW_SetExtendedListViewStyle to more accurately reflect their purpose.
rpcrt4: Include ws2tcpip.h instead of Unix headers when targeting a build for Windows.
avicap32: Fix the type of retval in capGetDriverDescriptionA.
comdlg32: Fix checks for fai...