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
985646f0
Commit
985646f0
authored
Aug 16, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declaration, implemention and test for BuildTrusteeWithSid.
parent
7deab426
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
2 deletions
+46
-2
security.c
dlls/advapi32/security.c
+16
-2
security.c
dlls/advapi32/tests/security.c
+26
-0
aclapi.h
include/aclapi.h
+4
-0
No files found.
dlls/advapi32/security.c
View file @
985646f0
...
...
@@ -1486,7 +1486,14 @@ DWORD WINAPI GetSecurityInfoExW(
*/
VOID
WINAPI
BuildTrusteeWithSidA
(
PTRUSTEEA
pTrustee
,
PSID
pSid
)
{
FIXME
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
TRACE
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
pTrustee
->
pMultipleTrustee
=
NULL
;
pTrustee
->
MultipleTrusteeOperation
=
NO_MULTIPLE_TRUSTEE
;
pTrustee
->
TrusteeForm
=
NO_MULTIPLE_TRUSTEE
;
pTrustee
->
TrusteeType
=
TRUSTEE_IS_UNKNOWN
;
pTrustee
->
TrusteeType
=
TRUSTEE_IS_UNKNOWN
;
pTrustee
->
ptstrName
=
(
LPSTR
)
pSid
;
}
/******************************************************************************
...
...
@@ -1494,7 +1501,14 @@ VOID WINAPI BuildTrusteeWithSidA(PTRUSTEEA pTrustee, PSID pSid)
*/
VOID
WINAPI
BuildTrusteeWithSidW
(
PTRUSTEEW
pTrustee
,
PSID
pSid
)
{
FIXME
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
TRACE
(
"%p %p
\n
"
,
pTrustee
,
pSid
);
pTrustee
->
pMultipleTrustee
=
NULL
;
pTrustee
->
MultipleTrusteeOperation
=
NO_MULTIPLE_TRUSTEE
;
pTrustee
->
TrusteeForm
=
NO_MULTIPLE_TRUSTEE
;
pTrustee
->
TrusteeType
=
TRUSTEE_IS_UNKNOWN
;
pTrustee
->
TrusteeType
=
TRUSTEE_IS_UNKNOWN
;
pTrustee
->
ptstrName
=
(
LPWSTR
)
pSid
;
}
/******************************************************************************
...
...
dlls/advapi32/tests/security.c
View file @
985646f0
...
...
@@ -24,6 +24,7 @@
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "aclapi.h"
typedef
BOOL
(
WINAPI
*
fnConvertSidToStringSidA
)(
PSID
pSid
,
LPSTR
*
str
);
typedef
BOOL
(
WINAPI
*
fnConvertSidToStringSidW
)(
PSID
pSid
,
LPWSTR
*
str
);
...
...
@@ -53,9 +54,34 @@ void test_sid()
ok
(
r
,
"failed to convert sid
\n
"
);
ok
(
!
lstrcmpW
(
str
,
refstr
),
"incorrect sid
\n
"
);
LocalFree
(
str
);
FreeSid
(
psid
);
}
void
test_trustee
()
{
TRUSTEE
trustee
;
PSID
psid
;
DWORD
r
;
SID_IDENTIFIER_AUTHORITY
auth
=
{
{
0x11
,
0x22
,
0
,
0
,
0
,
0
}
};
r
=
AllocateAndInitializeSid
(
&
auth
,
1
,
42
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
&
psid
);
ok
(
r
,
"failed to init SID
\n
"
);
memset
(
&
trustee
,
0xff
,
sizeof
trustee
);
BuildTrusteeWithSidA
(
&
trustee
,
psid
);
ok
(
trustee
.
pMultipleTrustee
==
NULL
,
"pMultipleTrustee wrong
\n
"
);
ok
(
trustee
.
MultipleTrusteeOperation
==
NO_MULTIPLE_TRUSTEE
,
"MultipleTrusteeOperation wrong
\n
"
);
ok
(
trustee
.
TrusteeForm
==
TRUSTEE_IS_SID
,
"TrusteeForm wrong
\n
"
);
ok
(
trustee
.
TrusteeType
==
TRUSTEE_IS_UNKNOWN
,
"TrusteeType wrong
\n
"
);
ok
(
trustee
.
ptstrName
==
(
LPSTR
)
psid
,
"ptstrName wrong
\n
"
);
FreeSid
(
psid
);
}
START_TEST
(
security
)
{
test_sid
();
test_trustee
();
}
include/aclapi.h
View file @
985646f0
...
...
@@ -72,6 +72,10 @@ void BuildTrusteeWithObjectsAndSidW( PTRUSTEEW,
POBJECTS_AND_SID
,
GUID
*
,
GUID
*
,
PSID
);
#define BuildTrusteeWithObjectsAndSid WINELIB_NAME_AW(BuildTrusteeWithObjectsAndSid)
VOID
WINAPI
BuildTrusteeWithSidA
(
PTRUSTEEA
pTrustee
,
PSID
pSid
);
VOID
WINAPI
BuildTrusteeWithSidW
(
PTRUSTEEW
pTrustee
,
PSID
pSid
);
#define BuildTrusteeWithSid WINELIB_NAME_AW(BuildTrusteeWithSid)
#ifdef __cplusplus
}
#endif
...
...
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