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
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
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
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
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
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.
>> 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
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
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
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
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)
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
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
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
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.
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
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
-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
-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
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
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
>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
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
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
24 matches
Mail list logo