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
6d594456
Commit
6d594456
authored
Jan 30, 1999
by
Matthew Becker
Committed by
Alexandre Julliard
Jan 30, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc updates.
parent
e1d19f36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
25 deletions
+56
-25
security.c
dlls/advapi32/security.c
+50
-20
service.c
dlls/advapi32/service.c
+6
-5
No files found.
dlls/advapi32/security.c
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 [ADVAPI32.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
;
}
dlls/advapi32/service.c
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
...
...
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