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
e7a27694
Commit
e7a27694
authored
Jan 15, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Added SaferCreateLevel stub.
parent
1a38b7bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
1 deletion
+63
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+11
-0
Makefile.in
include/Makefile.in
+1
-0
winsafer.h
include/winsafer.h
+50
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
e7a27694
...
...
@@ -540,7 +540,7 @@
@ stdcall RevertToSelf()
# @ stub SaferCloseLevel
# @ stub SaferComputeTokenFromLevel
# @ stub SaferCreateLevel
@ stdcall SaferCreateLevel(long long long ptr ptr)
# @ stub SaferGetLevelInformation
# @ stub SaferGetPolicyInformation
# @ stub SaferIdentifyLevel
...
...
dlls/advapi32/security.c
View file @
e7a27694
...
...
@@ -28,6 +28,7 @@
#include "winbase.h"
#include "winerror.h"
#include "winreg.h"
#include "winsafer.h"
#include "winternl.h"
#include "winioctl.h"
#include "ntsecapi.h"
...
...
@@ -5122,3 +5123,13 @@ DWORD WINAPI SetSecurityInfo(HANDLE handle, SE_OBJECT_TYPE ObjectType,
FIXME
(
"stub
\n
"
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* SaferCreateLevel [ADVAPI32.@]
*/
BOOL
WINAPI
SaferCreateLevel
(
DWORD
ScopeId
,
DWORD
LevelId
,
DWORD
OpenFlags
,
SAFER_LEVEL_HANDLE
*
LevelHandle
,
LPVOID
lpReserved
)
{
FIXME
(
"(%u, %x, %u, %p, %p) stub
\n
"
,
ScopeId
,
LevelId
,
OpenFlags
,
LevelHandle
,
lpReserved
);
return
FALSE
;
}
include/Makefile.in
View file @
e7a27694
...
...
@@ -448,6 +448,7 @@ SRCDIR_INCLUDES = \
winperf.h
\
winreg.h
\
winresrc.h
\
winsafer.h
\
winscard.h
\
winsmcrd.h
\
winsock.h
\
...
...
include/winsafer.h
0 → 100644
View file @
e7a27694
/*
* Winsafer definitions
*
* Copyright (C) 2009 Nikolay Sivov
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_WINSAFER_H
#define __WINE_WINSAFER_H
#include <guiddef.h>
#include <wincrypt.h>
#ifdef __cplusplus
extern
"C"
{
#endif
DECLARE_HANDLE
(
SAFER_LEVEL_HANDLE
);
#define SAFER_SCOPEID_MACHINE 1
#define SAFER_SCOPEID_USER 2
#define SAFER_LEVELID_DISALLOWED 0x00000
#define SAFER_LEVELID_UNTRUSTED 0x01000
#define SAFER_LEVELID_CONSTRAINED 0x10000
#define SAFER_LEVELID_NORMALUSER 0x20000
#define SAFER_LEVELID_FULLYTRUSTED 0x40000
#define SAFER_LEVEL_OPEN 1
WINADVAPI
BOOL
WINAPI
SaferCreateLevel
(
DWORD
,
DWORD
,
DWORD
,
SAFER_LEVEL_HANDLE
*
,
LPVOID
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_WINSAFER_H */
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