Displaying 11 results from an estimated 11 matches similar to: "Presumed bug found in SCROLL_GetPtrScrollInfo"
2001 Aug 10
1
A bug in WIN_SetWindowLong ?
Hi all.
While debugging some program, I discovered what looks like a bug. Please
be patient if I'm wrong.
In the WIN_SetWindowLong function, in order to get the address of
wExtra, there is:
ptr = (LONG *)(((char *)wndPtr->wExtra) + offset);
but this takes the *CONTENT* of wndPtr->wExtra.
The correct code should be
ptr = (LONG *)(((char
2001 Feb 04
1
Hey ! thanks ! Flash 5 works now ... for short ... :(
so ...
not i got some screens further ...
but now i get :
setup could not start the install-engine ( 0x80070005 ).
and it shuts down ..
one oether question is : why does wine open so many desktopst ?
for every run a new one ?
that is kinda annoing ...
eny idea ?
would be grate if u could help me to fix that problem ..
the problem with the install screnn can be fixt, by patching manualy the
2001 May 15
2
WTLIB99 with wine-010510 tar ball broken again
Hi:
Remember that I somewhat enthusiastically wrote that a VB3 program
called "Watchtower Library 1999" now works with wine-010508?
Well, [un]fortunately it is broken with again with the
wine-010510 tar ball. (Thank you, Kin Lau for pointing this out to
me by e-mail.)
Description:
The main program window of WTLIB99 is just a small bar with buttons
and a menu on top of the buttons.
2016 Jun 16
0
Wine release 1.8.3
The Wine maintenance release 1.8.3 is now available.
What's new in this release (see below for details):
- Various bug fixes.
- A lot of NVidia cards added to the GPU description table.
- Updates to the National Language Support files.
The source is available from the following locations:
http://dl.winehq.org/wine/source/1.8/wine-1.8.3.tar.bz2
2019 Jul 29
0
[PATCH 4/9] nouveau: factor out dmem fence completion
Factor out the end of fencing logic from the two migration routines.
Signed-off-by: Christoph Hellwig <hch at lst.de>
---
drivers/gpu/drm/nouveau/nouveau_dmem.c | 33 ++++++++++++--------------
1 file changed, 15 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_dmem.c b/drivers/gpu/drm/nouveau/nouveau_dmem.c
index d469bc334438..21052a4aaf69 100644
---
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
2002 Feb 26
0
DDE problems
Hi!
I started using wine (wine-20020122 compiled from source tarball) a couple
of weeks ago to run a store-point-of-sale application.
The idea is to port this windows application to linux. Before porting, we
decided to check if the app could be emulated on linux with wine or
recompiled with winelib.
This is also necessary to run proprietary windows DLLs from third parties
such as credit card
2016 Apr 01
0
Wine release 1.9.7
The Wine development release 1.9.7 is now available.
What's new in this release (see below for details):
- More work towards the WineD3D command stream.
- More support for Shader Model 5 shaders.
- C++ exception handling on x86-64.
- Support for Windows-style static import libraries.
- Performance fixes in the XML writer.
- Various bug fixes.
The source is available from the
2008 Mar 17
0
[LLVMdev] Cooling Outage Presumed Over
Dear All,
Since the cooling outage was scheduled to end at noon and it's now 4:00
pm Central, I'm going to step out on a limb and say that the cooling
outage is probably over.
:)
The temperature in the room where llvm.org is located did not rise
significantly, and so we were able to keep everything running as usual.
Regards,
John Criswell
2006 Mar 17
1
Fatal trap 12: page fault while in kernel mode / current process=12 (swi1: net)
this is 6.0-STABLE as for Mar 17.
KDB: debugger backends: ddb
KDB: current backend: ddb
Copyright (c) 1992-2006 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 6.1-PRERELEASE #2: Fri Mar 17 11:05:32 UTC 2006
vlad@host:/usr/src/sys/amd64/compile/DEF_WEB
Timecounter
2018 Jan 11
0
[PATCH 1/3] gpu: host1x: Add support for DMA fences
From: Mikko Perttunen <mperttunen at nvidia.com>
Add an implementation of DMA fences backed by Host1x syncpoints,
an interface to specify a prefence for job submissions.
Before submission, prefences containing only Host1x syncpoints
are waited by pushing wait commands to CDMA, whereas other
fences are CPU-waited.
Signed-off-by: Mikko Perttunen <mperttunen at nvidia.com>