Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4d154d00
Commit
4d154d00
authored
May 18, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
May 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stubs for GetNamedSecurityInfoExA/W.
parent
1d9b7bda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
security.c
dlls/advapi32/security.c
+24
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
4d154d00
...
...
@@ -260,8 +260,8 @@
# @ stub GetMultipleTrusteeOperationW
# @ stub GetMultipleTrusteeW
@ stdcall GetNamedSecurityInfoA (str long long ptr ptr ptr ptr ptr)
# @ stub GetNamedSecurityInfoExA
# @ stub GetNamedSecurityInfoExW
@ stdcall GetNamedSecurityInfoExA(str long long str str ptr ptr ptr ptr)
@ stdcall GetNamedSecurityInfoExW(wstr long long wstr wstr ptr ptr ptr ptr)
@ stdcall GetNamedSecurityInfoW (wstr long long ptr ptr ptr ptr ptr)
@ stdcall GetNumberOfEventLogRecords (long ptr)
@ stdcall GetOldestEventLogRecord (long ptr)
...
...
dlls/advapi32/security.c
View file @
4d154d00
...
...
@@ -5495,6 +5495,30 @@ DWORD WINAPI GetNamedSecurityInfoW( LPWSTR name, SE_OBJECT_TYPE type,
}
/******************************************************************************
* GetNamedSecurityInfoExW [ADVAPI32.@]
*/
DWORD
WINAPI
GetNamedSecurityInfoExW
(
LPCWSTR
object
,
SE_OBJECT_TYPE
type
,
SECURITY_INFORMATION
info
,
LPCWSTR
provider
,
LPCWSTR
property
,
PACTRL_ACCESSW
*
access_list
,
PACTRL_AUDITW
*
audit_list
,
LPWSTR
*
owner
,
LPWSTR
*
group
)
{
FIXME
(
"(%s, %d, %d, %s, %s, %p, %p, %p, %p) stub
\n
"
,
debugstr_w
(
object
),
type
,
info
,
debugstr_w
(
provider
),
debugstr_w
(
property
),
access_list
,
audit_list
,
owner
,
group
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* GetNamedSecurityInfoExA [ADVAPI32.@]
*/
DWORD
WINAPI
GetNamedSecurityInfoExA
(
LPCSTR
object
,
SE_OBJECT_TYPE
type
,
SECURITY_INFORMATION
info
,
LPCSTR
provider
,
LPCSTR
property
,
PACTRL_ACCESSA
*
access_list
,
PACTRL_AUDITA
*
audit_list
,
LPSTR
*
owner
,
LPSTR
*
group
)
{
FIXME
(
"(%s, %d, %d, %s, %s, %p, %p, %p, %p) stub
\n
"
,
debugstr_a
(
object
),
type
,
info
,
debugstr_a
(
provider
),
debugstr_a
(
property
),
access_list
,
audit_list
,
owner
,
group
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* DecryptFileW [ADVAPI32.@]
*/
BOOL
WINAPI
DecryptFileW
(
LPCWSTR
lpFileName
,
DWORD
dwReserved
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment