"The GetFileSecurityA and GetFileSecurityW functions have a "RequestedInformation" that is defined as a PBLOB and should be a DWORD." - Keith Faber. Thank you Keith! see #4364

git-svn-id: file:///home/svn/framework3/trunk@13201 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Chao Mu 2011-07-17 17:48:09 +00:00
parent cccbdf9fab
commit d23a5f6092
1 changed files with 2 additions and 2 deletions

View File

@ -1427,7 +1427,7 @@ class Def_advapi32
dll.add_function('GetFileSecurityA', 'BOOL',[
["PCHAR","lpFileName","in"],
["PBLOB","RequestedInformation","in"],
["DWORD","RequestedInformation","in"],
["PBLOB","pSecurityDescriptor","out"],
["DWORD","nLength","in"],
["PDWORD","lpnLengthNeeded","out"],
@ -1435,7 +1435,7 @@ class Def_advapi32
dll.add_function('GetFileSecurityW', 'BOOL',[
["PWCHAR","lpFileName","in"],
["PBLOB","RequestedInformation","in"],
["DWORD","RequestedInformation","in"],
["PBLOB","pSecurityDescriptor","out"],
["DWORD","nLength","in"],
["PDWORD","lpnLengthNeeded","out"],