Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
6d594456
Commit
6d594456
authored
26 years ago
by
Matthew Becker
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Doc updates.
parent
e1d19f36
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/advapi32/security.c
+50
-20
50 additions, 20 deletions
dlls/advapi32/security.c
dlls/advapi32/service.c
+6
-5
6 additions, 5 deletions
dlls/advapi32/service.c
with
56 additions
and
25 deletions
dlls/advapi32/security.c
+
50
−
20
View file @
6d594456
...
...
@@ -323,27 +323,36 @@ AllocateAndInitializeSid( LPSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
return
TRUE
;
}
/***********************************************************************
* FreeSid (ADVAPI.42)
/******************************************************************************
* FreeSid [ADVAPI32.42]
*
* PARAMS
* pSid []
*/
VOID
*
WINAPI
FreeSid
(
LPSID
pSid
)
VOID
*
WINAPI
FreeSid
(
LPSID
pSid
)
{
HeapFree
(
GetProcessHeap
(),
0
,
pSid
);
return
NULL
;
}
/***********************************************************************
* InitializeSecurityDescriptor (ADVAPI.73)
/******************************************************************************
* InitializeSecurityDescriptor [ADVAPI32.73]
*
* PARAMS
* pDescr []
* revision []
*/
BOOL32
WINAPI
InitializeSecurityDescriptor
(
SECURITY_DESCRIPTOR
*
pDescr
,
DWORD
revision
)
BOOL32
WINAPI
InitializeSecurityDescriptor
(
SECURITY_DESCRIPTOR
*
pDescr
,
DWORD
revision
)
{
FIXME
(
security
,
"(%p,%#lx): stub
\n
"
,
pDescr
,
revision
);
return
TRUE
;
}
/***********************************************************************
*
GetSecurityDescriptorLength
(
ADVAPI.55
)
/***********************************************************************
*******
* GetSecurityDescriptorLength
[
ADVAPI
32
.55
]
*/
DWORD
WINAPI
GetSecurityDescriptorLength
(
SECURITY_DESCRIPTOR
*
pDescr
)
{
...
...
@@ -351,30 +360,46 @@ DWORD WINAPI GetSecurityDescriptorLength( SECURITY_DESCRIPTOR *pDescr)
return
0
;
}
/***********************************************************************
* GetSecurityDescriptorOwner (ADVAPI.56)
/******************************************************************************
* GetSecurityDescriptorOwner [ADVAPI32.56]
*
* PARAMS
* pOwner []
* lpbOwnerDefaulted []
*/
BOOL32
WINAPI
GetSecurityDescriptorOwner
(
SECURITY_DESCRIPTOR
*
pDescr
,
LPSID
*
pOwner
,
LPBOOL32
lpbOwnerDefaulted
)
BOOL32
WINAPI
GetSecurityDescriptorOwner
(
SECURITY_DESCRIPTOR
*
pDescr
,
LPSID
*
pOwner
,
LPBOOL32
lpbOwnerDefaulted
)
{
FIXME
(
security
,
"(%p,%p,%p), stub
\n
"
,
pDescr
,
pOwner
,
lpbOwnerDefaulted
);
*
lpbOwnerDefaulted
=
TRUE
;
return
0
;
}
/***********************************************************************
* GetSecurityDescriptorGroup (ADVAPI.54)
/******************************************************************************
* GetSecurityDescriptorGroup [ADVAPI32.54]
*
* PARAMS
* pGroup []
* lpbOwnerDefaulted []
*/
BOOL32
WINAPI
GetSecurityDescriptorGroup
(
SECURITY_DESCRIPTOR
*
pDescr
,
LPSID
*
pGroup
,
LPBOOL32
lpbOwnerDefaulted
)
BOOL32
WINAPI
GetSecurityDescriptorGroup
(
SECURITY_DESCRIPTOR
*
pDescr
,
LPSID
*
pGroup
,
LPBOOL32
lpbOwnerDefaulted
)
{
FIXME
(
security
,
"(%p,%p,%p), stub
\n
"
,
pDescr
,
pGroup
,
lpbOwnerDefaulted
);
*
lpbOwnerDefaulted
=
TRUE
;
return
0
;
}
/***********************************************************************
* InitializeSid (ADVAPI.74)
/******************************************************************************
* InitializeSid [ADVAPI32.74]
*
* PARAMS
* pIdentifierAuthority []
*/
BOOL32
WINAPI
InitializeSid
(
LPSID
pSid
,
LPSID_IDENTIFIER_AUTHORITY
pIdentifierAuthority
,
BOOL32
WINAPI
InitializeSid
(
LPSID
pSid
,
LPSID_IDENTIFIER_AUTHORITY
pIdentifierAuthority
,
BYTE
nSubAuthorityCount
)
{
int
i
;
...
...
@@ -596,9 +621,14 @@ NotifyBootConfigStatus( DWORD x1 )
}
/******************************************************************************
* RevertToSelf [ADVAPI32]
* RevertToSelf [ADVAPI32.180]
*
* PARAMS
* void []
*/
BOOL32
WINAPI
RevertToSelf
(
void
)
{
BOOL32
WINAPI
RevertToSelf
(
void
)
{
FIXME
(
advapi
,
"(), stub
\n
"
);
return
TRUE
;
}
This diff is collapsed.
Click to expand it.
dlls/advapi32/service.c
+
6
−
5
View file @
6d594456
...
...
@@ -10,6 +10,11 @@
#include
"heap.h"
#include
<time.h>
/* FIXME: Where do these belong? */
typedef
DWORD
SERVICE_STATUS_HANDLE
;
typedef
VOID
(
WINAPI
*
LPHANDLER_FUNCTION
)(
DWORD
dwControl
);
/******************************************************************************
* EnumServicesStatus32A [ADVAPI32.38]
*/
...
...
@@ -59,11 +64,7 @@ StartServiceCtrlDispatcher32W( LPSERVICE_TABLE_ENTRY32W servent )
return
TRUE
;
}
/* FIXME: Where do these belong? */
typedef
DWORD
SERVICE_STATUS_HANDLE
;
typedef
VOID
(
WINAPI
*
LPHANDLER_FUNCTION
)(
DWORD
dwControl
);
/*****************************************************************************
/******************************************************************************
* RegisterServiceCtrlHandlerA [ADVAPI32.176]
*/
SERVICE_STATUS_HANDLE
WINAPI
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment