"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-b9f4589650daunstable
parent
cccbdf9fab
commit
d23a5f6092
|
@ -1427,7 +1427,7 @@ class Def_advapi32
|
||||||
|
|
||||||
dll.add_function('GetFileSecurityA', 'BOOL',[
|
dll.add_function('GetFileSecurityA', 'BOOL',[
|
||||||
["PCHAR","lpFileName","in"],
|
["PCHAR","lpFileName","in"],
|
||||||
["PBLOB","RequestedInformation","in"],
|
["DWORD","RequestedInformation","in"],
|
||||||
["PBLOB","pSecurityDescriptor","out"],
|
["PBLOB","pSecurityDescriptor","out"],
|
||||||
["DWORD","nLength","in"],
|
["DWORD","nLength","in"],
|
||||||
["PDWORD","lpnLengthNeeded","out"],
|
["PDWORD","lpnLengthNeeded","out"],
|
||||||
|
@ -1435,7 +1435,7 @@ class Def_advapi32
|
||||||
|
|
||||||
dll.add_function('GetFileSecurityW', 'BOOL',[
|
dll.add_function('GetFileSecurityW', 'BOOL',[
|
||||||
["PWCHAR","lpFileName","in"],
|
["PWCHAR","lpFileName","in"],
|
||||||
["PBLOB","RequestedInformation","in"],
|
["DWORD","RequestedInformation","in"],
|
||||||
["PBLOB","pSecurityDescriptor","out"],
|
["PBLOB","pSecurityDescriptor","out"],
|
||||||
["DWORD","nLength","in"],
|
["DWORD","nLength","in"],
|
||||||
["PDWORD","lpnLengthNeeded","out"],
|
["PDWORD","lpnLengthNeeded","out"],
|
||||||
|
|
Loading…
Reference in New Issue