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
78cffc6e
Commit
78cffc6e
authored
Jan 27, 2009
by
Austin English
Committed by
Alexandre Julliard
Jan 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
authz: Add stub dll.
parent
43db8477
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
109 additions
and
0 deletions
+109
-0
configure
configure
+9
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/authz/Makefile.in
+13
-0
authz.c
dlls/authz/authz.c
+44
-0
authz.spec
dlls/authz/authz.spec
+42
-0
No files found.
configure
View file @
78cffc6e
...
...
@@ -24134,6 +24134,14 @@ dlls/atl/Makefile: dlls/atl/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/atl/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/authz/Makefile"
test
"x
$enable_authz
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
authz"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/authz/Makefile: dlls/authz/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/authz/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/avicap32/Makefile"
test
"x
$enable_avicap32
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
avicap32"
...
...
@@ -28293,6 +28301,7 @@ do
"dlls/amstream/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/amstream/Makefile" ;;
"dlls/appwiz.cpl/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/appwiz.cpl/Makefile" ;;
"dlls/atl/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/atl/Makefile" ;;
"dlls/authz/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/authz/Makefile" ;;
"dlls/avicap32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/avicap32/Makefile" ;;
"dlls/avifil32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/avifil32/Makefile" ;;
"dlls/browseui/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/browseui/Makefile" ;;
...
...
configure.ac
View file @
78cffc6e
...
...
@@ -1809,6 +1809,7 @@ WINE_CONFIG_MAKEFILE([dlls/advpack/tests/Makefile],[dlls/Maketest.rules],[dlls],
WINE_CONFIG_MAKEFILE([dlls/amstream/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/appwiz.cpl/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/atl/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/authz/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/avicap32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/avifil32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/browseui/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
...
...
dlls/authz/Makefile.in
0 → 100644
View file @
78cffc6e
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
authz.dll
IMPORTS
=
kernel32
C_SRCS
=
\
authz.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/authz/authz.c
0 → 100644
View file @
78cffc6e
/*
* AUTHZ Implementation
*
* Copyright 2009 Austin English
*
* 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
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
authz
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
default:
break
;
}
return
TRUE
;
}
dlls/authz/authz.spec
0 → 100644
View file @
78cffc6e
@ stub AuthzAccessCheck
@ stub AuthzAddSidsToContext
@ stub AuthzCachedAccessCheck
@ stub AuthzEnumerateSecurityEventSources
@ stub AuthzEvaluateSacl
@ stub AuthzFreeAuditEvent
@ stub AuthzFreeContext
@ stub AuthzFreeHandle
@ stub AuthzFreeResourceManager
@ stub AuthzGetInformationFromContext
@ stub AuthzInitializeContextFromAuthzContext
@ stub AuthzInitializeContextFromSid
@ stub AuthzInitializeContextFromToken
@ stub AuthzInitializeObjectAccessAuditEvent
@ stub AuthzInitializeObjectAccessAuditEvent2
@ stub AuthzInitializeResourceManager
@ stub AuthzInstallSecurityEventSource
@ stub AuthzOpenObjectAudit
@ stub AuthzRegisterSecurityEventSource
@ stub AuthzReportSecurityEvent
@ stub AuthzReportSecurityEventFromParams
@ stub AuthzUninstallSecurityEventSource
@ stub AuthzUnregisterSecurityEventSource
@ stub AuthziAllocateAuditParams
@ stub AuthziCheckContextMembership
@ stub AuthziFreeAuditEventType
@ stub AuthziFreeAuditParams
@ stub AuthziFreeAuditQueue
@ stub AuthziGenerateAdminAlertAuditW
@ stub AuthziInitializeAuditEvent
@ stub AuthziInitializeAuditEventType
@ stub AuthziInitializeAuditParams
@ stub AuthziInitializeAuditParamsFromArray
@ stub AuthziInitializeAuditParamsWithRM
@ stub AuthziInitializeAuditQueue
@ stub AuthziInitializeContextFromSid
@ stub AuthziLogAuditEvent
@ stub AuthziModifyAuditEvent2
@ stub AuthziModifyAuditEvent
@ stub AuthziModifyAuditEventType
@ stub AuthziModifyAuditQueue
@ stub AuthziSourceAudit
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