Jacek Caban wrote:
Hi.
Now MSHTML is ready for a patch that enables HTML rendering over
Gecko API.
Any chance this will work with the native unix gecko?
Ivan
I have a program and when i finish it (with click on X or in File->Exit), then
ocurr an exception
and the debugger is on. I want when the program is finished the debugger don't
start, and i can get
the console prompt again.
The program is functioning correctly, only when i finish the program i h
> If you wrote your own version of Calc it may be an amusing thing to add
> to Wine. We have a minesweeper clone, after all, and I'm sure that the
> reactos guys would appreciate it.
Well, there is already a winecalc in ReactOS.
Has this new version some additional features?
Eric Pouech [EMAIL PROTECTED] wrote:
>luis lenders a écrit :
>> So how could i pass the data in lpVideoHdr to the application? Any
>> help appreciated as i'm still quite a beginner in this :)
>it seems that you open somehow a capture session.
>Within this session, you can set a user defined ca
Hi.
Now MSHTML is ready for a patch that enables HTML rendering over
Gecko API. I attached the patch that makes IE works with Wine's MSHTML.
Any comments/suggestions are welcome. If you want to see how
it works, you need to have a working installation of IE and Mozilla
installed
under Wine. Then j
luis lenders wrote:
As to the title, avicap32 won't implement the callback function, but
your
application will do that. avicap32 only will call it.
>Hi , i would like to implement this function:
>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multim
ed/htm/_win32_cappreview.asp
Shachar Shemesh wrote:
We have a minesweeper clone, after all, and I'm sure that the
reactos guys would appreciate it.
Actually, we've had a calculator since 11/2004, it's located in
subsys/system/cmd...
Best Regards,
Thomas
SInce stuff is missing from msvideo (ICSeqCompressFrame{Start,,Stop})
you have to use native MSVFW32.DLL
This will crash when you stop msn webcam (Because of the CreateThread
continuing to run)
In general it is very unstable, but at least it proves you can use
'webcam's under wine.
How does it
Hey everyone I have moved to a gmail account, since they offer free
POP access. I have 49 invites left if anyone wants an account, I am
in the process of manually forwarding all of my emails from Yahoo to
GMail, and saving to get a 2nd computer so I can have a dedicated
linux box to come back here
if (stat( entry->mnt_mountp, &st ) == -1) continue;
if (st.st_dev != dev || st.st_ino != ino) continue;
should be
if (stat( entry->mnt_mountp, &st ) == -1) continue;
if (st.st_dev != dev) continue;
SInce currently the code is looking for the dev AND inode of the targ
[EMAIL PROTECTED] wrote:
I've ported M$ Calc using winelib.
Is this program needed for wine?
Did you port it, or reimplemented it? Porting means taking the original
source and compiling it using winelib. As calc is a MS intellectual
property, we would very much prefer it if you did not post i
Steven Edwards [EMAIL PROTECTED] wrote:
>I think it would be good in testing Wine/ReactOS vs Windows for Winelib
applications developers.
>You can make a dummy file in your application directory called
application.exe.local to force
>Windows to use the dlls in the local directory. So say you have
I've ported M$ Calc using winelib.
Is this program needed for wine?
--
Linux forever
pgpxYWp9IWSlR.pgp
Description: PGP signature
On Sunday 17 April 2005 18:16, Dmitry Timoshkov wrote:
> Right, but that doesn't answer the first question.
Just checked Wine's LOGFONTA against MSVC 5 (timestamps
on the include files are from 1996): no differences.
-Hans
On Sun, 17 Apr 2005 10:32 pm, Dmitry Timoshkov wrote:
> "Robert Lunnon" <[EMAIL PROTECTED]> wrote:
> > Breakpoint 2, NtMapViewOfSection (handle=0x78, process=0x,
> > addr_ptr=0x7fd8ed48, zero_bits=0, commit_size=0, offset=0x7fd8ed1c,
> > size_ptr=0x7fd8ed44, inherit=ViewShare, alloc_typ
On Sun, 17 Apr 2005 06:48 pm, Eric Pouech wrote:
> Robert Lunnon a écrit :
> > I am trying to Implement get_default_drive_device for Solaris but its
> > unclear to me what this is supposed to do. It get passed the links in
> > ~/.wine/dosdevices then tries to determine a mount point for them.
> > R
luis lenders a écrit :
Hi , i would like to implement this function:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_cappreview.asp
Here fpProc is a pointer to the preview callback
function
Applications use this to get access to the videodata.
Right now i alread
"Hans Leidekker" <[EMAIL PROTECTED]> wrote:
> > Hmm, which records were added into LOGFONT structure after NT4?
> >
> > That would make the generated.c, test_pack_LOGFONTA() fail as well?
>
> I don't think so, the generated tests are compile-time tests,
> ie the outcome depends on the headers (an
On Sunday 17 April 2005 17:22, Dmitry Timoshkov wrote:
> Hmm, which records were added into LOGFONT structure after NT4?
>
> That would make the generated.c, test_pack_LOGFONTA() fail as well?
I don't think so, the generated tests are compile-time tests,
ie the outcome depends on the headers (and
On Mon, Apr 18, 2005 at 12:29:07AM +0900, Dmitry Timoshkov wrote:
> "Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote:
>
> > +struct mem_area
> > +{
> > +struct list entry; /* Entry in global mem area list */
> > +const void *base;/* Base address */
> > +UINT size
"Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote:
> +struct mem_area
> +{
> +struct list entry; /* Entry in global mem area list */
> +const void *base;/* Base address */
> +UINT size;/* Size in bytes */
> +void *data;/* Data associate
"Jakob Eriksson" <[EMAIL PROTECTED]> wrote:
> As per:
>
> http://test.winehq.org/data/200504141000/nt4_IDWASEMPTY/gdi32:gdiobj.txt
>
> MSDN shows:
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_912s.asp
>
> Explanation: the struct defined when the test is compile
On Sun, Apr 17, 2005 at 08:44:57AM -0500, Rob Shearman wrote:
> Why don't you free area here?
Details, details. But if you insist ... :)
Index: dlls/ntdll/ntdll.spec
===
RCS file: /var/cvs/wine/dlls/ntdll/ntdll.spec,v
retrieving rev
Hi , i would like to implement this function:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_cappreview.asp
Here fpProc is a pointer to the preview callback
function
Applications use this to get access to the videodata.
Right now i already have a preview window
Dimitrie O. Paun wrote:
On Thu, Apr 14, 2005 at 03:05:36PM +0200, Alexandre Julliard wrote:
Actually it should be possible to handle the fault using a vectored
handler, without requiring internal functions at all.
Completely untested (what do people use to test DIB handling?),
but it compil
"Robert Lunnon" <[EMAIL PROTECTED]> wrote:
> Breakpoint 2, NtMapViewOfSection (handle=0x78, process=0x,
> addr_ptr=0x7fd8ed48, zero_bits=0, commit_size=0, offset=0x7fd8ed1c,
> size_ptr=0x7fd8ed44, inherit=ViewShare, alloc_type=0, protect=2) at
> virtual.c:1737
> 1737ERR("
On Sun, 17 Apr 2005 03:38 pm, Robert Lunnon wrote:
> NtMapView of Section is returning bad values from the wineserver calls
> trace:virtual:MapViewOfFileEx Mapping Section View handle=58, pid=,
> addr=0 zbits=0 commit=0, offs_l=0 offs_h=0 count=0
> trace:virtual:NtMapViewOfSection handle=58
Is the Wine implementation of the Program Manager complete ? When I
start progman.exe I get a blank window with lots of errors about .BMPs.
--
Andrew
Beneath the noble bird
Between the proudest words
Behind the beauty, cracks appear
Once with heads held high
They sang out to the sky
Why do their
Robert Lunnon a écrit :
I am trying to Implement get_default_drive_device for Solaris but its unclear
to me what this is supposed to do. It get passed the links in
~/.wine/dosdevices then tries to determine a mount point for them. Reading
the Linux code the function only seems to return a mount
Paul van Schayck a écrit :
Hey Robert,
On Apr 12, 2005 7:15 AM, Robert Reif <[EMAIL PROTECTED]> wrote:
The proper way to set the default sound card is to use the same
registry keys as Windows and either use a native mmsys.cpl or
devise a wine specific way of doing the same thing.
Creating a builtin
30 matches
Mail list logo