Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
49b408b1
Commit
49b408b1
authored
Aug 11, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for BuildTrusteeWithSid(A/W).
parent
bcb6ecf8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-0
security.c
dlls/advapi32/security.c
+16
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
49b408b1
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
@ stub AreAnyAccessesGranted
@ stub AreAnyAccessesGranted
@ stdcall BackupEventLogA (long str)
@ stdcall BackupEventLogA (long str)
@ stdcall BackupEventLogW (long wstr)
@ stdcall BackupEventLogW (long wstr)
@ stdcall BuildTrusteeWithSidA(ptr ptr)
@ stdcall BuildTrusteeWithSidW(ptr ptr)
@ stub ChangeServiceConfigA
@ stub ChangeServiceConfigA
@ stub ChangeServiceConfigW
@ stub ChangeServiceConfigW
@ stdcall ClearEventLogA (long str)
@ stdcall ClearEventLogA (long str)
...
...
dlls/advapi32/security.c
View file @
49b408b1
...
@@ -1334,3 +1334,19 @@ DWORD WINAPI GetSecurityInfoExW(
...
@@ -1334,3 +1334,19 @@ DWORD WINAPI GetSecurityInfoExW(
FIXME
(
"stub!
\n
"
);
FIXME
(
"stub!
\n
"
);
return
ERROR_BAD_PROVIDER
;
return
ERROR_BAD_PROVIDER
;
}
}
/******************************************************************************
* BuildTrusteeWithSidA [ADVAPI32.@]
*/
VOID
WINAPI
BuildTrusteeWithSidA
(
PTRUSTEEA
pTrustee
,
PSID
pSid
)
{
FIXME
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
}
/******************************************************************************
* BuildTrusteeWithSidW [ADVAPI32.@]
*/
VOID
WINAPI
BuildTrusteeWithSidW
(
PTRUSTEEW
pTrustee
,
PSID
pSid
)
{
FIXME
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
}
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