RE: pch support

2006-01-14 Thread Casper Hornstrup
Just FYI here are some tests I made in November: http://www.reactos.org/archives/public/ros-dev/2005-November/006273.html Casper -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Edwards Sent: 13. januar 2006 17:01 To: Rolf Kalbermatter Cc:

RE: pch support

2006-01-13 Thread Casper Hornstrup
Just FYI here are some tests I made in November: http://www.reactos.org/archives/public/ros-dev/2005-November/006273.html Casper -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Edwards Sent: 13. januar 2006 17:01 To: Rolf Kalbermatter Cc:

RE: setupapi - Danish and Swedish Translations

2005-06-08 Thread Casper Hornstrup
+COPYFILEDLGORD DIALOG LOADONCALL MOVEABLE DISCARDABLE 20, 20, 208, 105 +STYLE DS_MODALFRAME | DS_SETFONT | WS_POPUP | WS_VISIBLE | WS_CAPTION +CAPTION Overførere Filer... +FONT 8, MS Shell Dlg +BEGIN Should be: +CAPTION Overfører Filer... -Original Message- From: [EMAIL PROTECTED]

RE: I think I know how uxtheme works...

2005-03-25 Thread Casper Hornstrup
In copyright law it's the result that matter, not the process. To be protected by copyright law, it must be in tangible form. Looking at disassembled code is permitted by copyright law so it's only a problem if the person doing it lacks self-discipline and uses the disassembled code in a way that

RE: Collection of wine tools on windows

2005-02-22 Thread Casper Hornstrup
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ivan Leo Puoti Sent: 21. februar 2005 09:26 To: wine-devel@winehq.com Cc: [EMAIL PROTECTED] Subject: Re: Collection of wine tools on windows Dimitrie O. Paun wrote: Heh, the MinGW folks seem

RE: [ros-dev] RE: Collection of wine tools on windows

2005-02-22 Thread Casper Hornstrup
on windows Hi, --- Casper Hornstrup [EMAIL PROTECTED] wrote: I might vote for using WINE headers in ReactOS if WINE relicensed its headers to a w32api or BSD like license that will allow use in a non-free application. What I would like to see most though, is for all three projects

Re: rpcrt4 and rpcss with WINE and ReactOS

2003-12-08 Thread Casper Hornstrup
-Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne af Steven Edwards Sendt: 8. december 2003 23:05 Til: [EMAIL PROTECTED] Emne: rpcrt4 and rpcss with WINE and ReactOS Hello, Ok I know this going to start YALD (Yet Another Long Discussion)

Re: LockResource16 in ole32.dll

2003-12-06 Thread Casper Hornstrup
-Oprindelig meddelelse- Fra: Dmitry Timoshkov [mailto:[EMAIL PROTECTED] Sendt: 6. december 2003 14:00 Til: Casper Hornstrup Cc: [EMAIL PROTECTED] Emne: Re: LockResource16 in ole32.dll Casper Hornstrup [EMAIL PROTECTED] wrote: I would like to have the call to the Win16 API

Mmsystem API timeGetTime

2003-11-30 Thread Casper Hornstrup
How can this API be implemented so it does not have to use ReleaseThunkLock and RestoreThunkLock (at least the Win32 version)? DWORD WINAPI timeGetTime(void) { /* FIXME: releasing the win16 lock here is a temporary hack (I hope) * that lets mciavi.drv run correctly */ DWORD

Re: Splitting out shared Win16/Win32 code

2003-11-30 Thread Casper Hornstrup
-Oprindelig meddelelse- Fra: Eric Pouech [mailto:[EMAIL PROTECTED] Sendt: 30. november 2003 16:35 Til: Casper Hornstrup Cc: 'wine-devel' Emne: Re: Splitting out shared Win16/Win32 code Casper Hornstrup wrote: Dlls/winmm/lolvldrv.c has a function (MMDRV_Message) shared

Re: Mmsystem API timeGetTime

2003-11-30 Thread Casper Hornstrup
-Oprindelig meddelelse- Fra: Eric Pouech [mailto:[EMAIL PROTECTED] Sendt: 30. november 2003 16:39 Til: Casper Hornstrup Cc: [EMAIL PROTECTED] Emne: Re: Mmsystem API timeGetTime I see two ways of doing it: - either use a function pointer to ReleaseThunkLock RestoreThunkLock

Splitting out shared Win16/Win32 code

2003-11-29 Thread Casper Hornstrup
should it be handled? Casper Hornstrup