Google Summer of code

2013-04-09 Thread Liu Tuo
Hi, I am Liu Tuo from National University of Singapore, a second year student in computer science. I am interested in joining this year's google summer of code in wine project. Have a nice day, Liu Tuo

Google summer of code

2013-04-09 Thread Tabibel Sami
Hi, I am sami, i am student at limoges university in france am doing a master degree: Cryptology and information security and am interesting to work on wine project this summer I like C programming. Regards

Re: [AppDB] -more spam-

2013-04-09 Thread Austin English
On Tue, Apr 9, 2013 at 3:20 PM, Joerg Schiermeier wrote: > > Hi list, > > again a spammer used the AppDB for his nasty activities: > > 1.) > > Comment for 'Adobe Photoshop CS3 (10.0)' added by tokoku12345 > > --- > > To reply to this email please

[AppDB] -more spam-

2013-04-09 Thread Joerg Schiermeier
Hi list, again a spammer used the AppDB for his nasty activities: 1.) > Comment for 'Adobe Photoshop CS3 (10.0)' added by tokoku12345 > --- > To reply to this email please use the link provided below. > DO NOT reply via your email client as it w

We're in GSoC 2013

2013-04-09 Thread Austin English
If you're interested in mentoring, please apply at: https://www.google-melange.com/gsoc/org/google/gsoc2013/wine In either case, please take a look at http://wiki.winehq.org/SummerOfCodeand update/remove/any projects you're familiar with. If you have any questions, feel free to contact me. Thank

Re: [1/3] include: Add COM interface definitions needed for PrintDlgEx implementation.

2013-04-09 Thread Dmitry Timoshkov
Vincent Povirk wrote: > Does PrintDlgEx really use an interface with the same iid but > different function signatures depending on whether the A or W version > is called? If so, I think it would be best to define both versions, so > that our tests and implementation can easily provide/use both.

Re: [1/3] include: Add COM interface definitions needed for PrintDlgEx implementation.

2013-04-09 Thread Vincent Povirk
>> And why bother checking UNICODE? > > Please clarify. +MIDL_INTERFACE("509aaeda-5639-11d1-b6a1-f8757bf9") +IPrintDialogServices : public IUnknown +{ +#ifdef UNICODE +virtual HRESULT STDMETHODCALLTYPE GetCurrentDevMode(LPDEVMODEW,UINT *) = 0; +virtual HRESULT STDMETHODCALLTYPE GetCurr

Re: tools: add ProductId to the Windows NT Current Version block

2013-04-09 Thread Alexandre Julliard
Aric Stewart writes: > @@ -3019,6 +3019,7 @@ HKLM,%CurrentVersionNT%,"CSDVersion",2,"Service Pack 3" > HKLM,%CurrentVersionNT%,"CurrentBuildNumber",2,"2600" > HKLM,%CurrentVersionNT%,"CurrentType",2,"Uniprocessor Free" > HKLM,%CurrentVersionNT%,"ProductName",2,"Microsoft Windows XP" > +HKLM,%C

RE: [3/13] wineconsole and kernel32: set GetLargestConsoleWindowSize based on screen resolution

2013-04-09 Thread Hugh McMaster
Eric Pouech wrote: >Le 08/04/2013 16:03, Nikolay Sivov a écrit : >>If you need to access registry from kernel32 you'll need to use ntdll calls >>directly. >>This functionality belongs to advapi32. Do you really need anything more than >>ntdll calls provide? >and on top of that, using registry

[PATCH v5 6/7] NFSD: Pass share reservations flags to VFS

2013-04-09 Thread Pavel Shilovsky
that maps them into O_DENY flags and make them visible for applications that use O_DENYMAND opens. Signed-off-by: Pavel Shilovsky --- fs/locks.c | 1 + fs/nfsd/nfs4state.c | 46 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git

[PATCH v5 7/7] locks: Disable LOCK_MAND support for MS_SHARELOCK mounts

2013-04-09 Thread Pavel Shilovsky
Signed-off-by: Pavel Shilovsky --- fs/locks.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/fs/locks.c b/fs/locks.c index 1402a43..a67857c 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -1719,6 +1719,12 @@ SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd) if (!f.file)

[PATCH v5 5/7] NFSv4: Add O_DENY* open flags support

2013-04-09 Thread Pavel Shilovsky
by passing these flags to NFSv4 open request. Also make it return -EBUSY on share conflicts with other opens. Signed-off-by: Pavel Shilovsky --- fs/nfs/internal.h | 3 ++- fs/nfs/nfs4proc.c | 4 +++- fs/nfs/nfs4super.c | 9 ++--- fs/nfs/nfs4xdr.c | 21 + fs/nfs/sup

[PATCH v5 4/7] CIFS: Use NT_CREATE_ANDX command for forcemand mounts

2013-04-09 Thread Pavel Shilovsky
forcemand mount option now lets us use Windows mandatory style of byte-range locks even if server supports posix ones - switches on Windows locking mechanism. Share flags is another locking mehanism provided by Windows semantic that can be used by NT_CREATE_ANDX command. This patch combines all Win

[PATCH v5 3/7] CIFS: Add O_DENY* open flags support

2013-04-09 Thread Pavel Shilovsky
Construct share_access value from O_DENY* flags and send it to the server. Signed-off-by: Pavel Shilovsky --- fs/cifs/cifsfs.c | 2 +- fs/cifs/cifsglob.h | 16 +++- fs/cifs/dir.c | 3 +++ fs/cifs/file.c | 4 fs/locks.c | 7 ++- include/linux/fs.h | 1

[PATCH v5 2/7] CIFS: Add share_access parm to open request

2013-04-09 Thread Pavel Shilovsky
and simplify CIFSSMBOpen params. Signed-off-by: Pavel Shilovsky --- fs/cifs/cifsacl.c | 8 fs/cifs/cifsglob.h | 2 +- fs/cifs/cifsproto.h | 8 fs/cifs/cifssmb.c | 50 +++--- fs/cifs/dir.c | 12 ++-- fs/cifs/file.

[PATCH v5 1/7] fcntl: Introduce new O_DENY* open flags

2013-04-09 Thread Pavel Shilovsky
This patch adds 3 flags: 1) O_DENYREAD that doesn't permit read access, 2) O_DENYWRITE that doesn't permit write access, 3) O_DENYDELETE that doesn't permit delete or rename, Network filesystems CIFS, SMB2.0, SMB3.0 and NFSv4 have such flags - this change can benefit cifs and nfs modules as well a

[PATCH v5 0/7] Add O_DENY* support for VFS and CIFS/NFS

2013-04-09 Thread Pavel Shilovsky
Main changes fom v4: 1) deny_lock_file uses FS_DOES_SHARELOCK flag from fs_flags to determine whether to use VFS locks or not. 2) Make nfs code return -EBUSY for share conflicts (was -EACCESS). Main changes from v3 1) O_DENYMAND is removed, sharelock mount option is introduced. 2) Patch fcntl.h a

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-09 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-04-09 13:01, schrieb Stefan Dösinger: > I'm also running some of those tests That sentence got cut off: I'm also running some of those tests on a nightly basis to monitor Wine's performance. -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-09 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-04-05 10:54, schrieb Gediminas Jakutis: > This was discussed on the IRC a bit. The idea is to write > [performance?] tests that are to be used for dxdiag. (I suppose > that includes that funny spinning dx logo cube test found on the > native d

Re: kernel32: Add a test for threads state when a process is being terminated.

2013-04-09 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=24997 Your paranoid android

RE: [3/13] wineconsole and kernel32: set GetLargestConsoleWindowSize based on screen resolution

2013-04-09 Thread Hugh McMaster
From: Nikolay Sivov Sent: Tuesday, 9 April 2013 12:03 AM To: Hugh McMaster; wine-devel Subject: Re: [3/13] wineconsole and kernel32: set GetLargestConsoleWindowSize based on screen resolution >If you need to access registry from kernel32 you'll need to use ntdll calls >directly. >Do you really n

RE: [1/13] wineconsole and kernel32: set GetLargestConsoleWindowSize based on screen resolution

2013-04-09 Thread Hugh McMaster
>Please don't send 13 patches with the same name. >Also, for long patch series, you should describe the whole purpose of the >series in the first patch [1/N] (or even better in a [0/N] patch) >Finally,even if "one change per patch" is the rule, don't overdo it... Frédéric Fair enough. Thank you

Re: [AppDB] Comment for 'Microsoft Outlook 2007' added by bayu

2013-04-09 Thread Rico Schüller
On 08.04.2013 21:26, Rosanne DiMesio wrote: On Mon, 8 Apr 2013 11:04:39 -0700 Austin English wrote: I've deleted the comment, but trying to delete the user from the admin page just refreshes the page.. I think the ability for admins to delete users was taken away when the AppDB and Bugz

RE: [3/13] wineconsole and kernel32: set GetLargestConsoleWindowSize based on screen resolution

2013-04-09 Thread Hugh McMaster
Eric Pouech wrote: >Le 08/04/2013 16:03, Nikolay Sivov a écrit : >>If you need to access registry from kernel32 you'll need to use ntdll calls >>directly. >>This functionality belongs to advapi32. Do you really need anything more than >>ntdll calls provide? >and on top of that, using registry