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
322d4cab
Commit
322d4cab
authored
Feb 17, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Feb 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sccbase: Add initial stub dll.
parent
c438d239
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
92 additions
and
0 deletions
+92
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/sccbase/Makefile.in
+13
-0
main.c
dlls/sccbase/main.c
+46
-0
sccbase.spec
dlls/sccbase/sccbase.spec
+26
-0
No files found.
Makefile.in
View file @
322d4cab
...
...
@@ -385,6 +385,7 @@ ALL_MAKEFILES = \
dlls/rsaenh/Makefile
\
dlls/rsaenh/tests/Makefile
\
dlls/sane.ds/Makefile
\
dlls/sccbase/Makefile
\
dlls/schannel/Makefile
\
dlls/schannel/tests/Makefile
\
dlls/secur32/Makefile
\
...
...
@@ -780,6 +781,7 @@ dlls/rsabase/tests/Makefile: dlls/rsabase/tests/Makefile.in dlls/Maketest.rules
dlls/rsaenh/Makefile
:
dlls/rsaenh/Makefile.in dlls/Makedll.rules
dlls/rsaenh/tests/Makefile
:
dlls/rsaenh/tests/Makefile.in dlls/Maketest.rules
dlls/sane.ds/Makefile
:
dlls/sane.ds/Makefile.in dlls/Makedll.rules
dlls/sccbase/Makefile
:
dlls/sccbase/Makefile.in dlls/Makedll.rules
dlls/schannel/Makefile
:
dlls/schannel/Makefile.in dlls/Makedll.rules
dlls/schannel/tests/Makefile
:
dlls/schannel/tests/Makefile.in dlls/Maketest.rules
dlls/secur32/Makefile
:
dlls/secur32/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
322d4cab
...
...
@@ -21621,6 +21621,8 @@ ac_config_files="$ac_config_files dlls/rsaenh/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/sane.ds/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/sccbase/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/schannel/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/schannel/tests/Makefile"
...
...
@@ -22720,6 +22722,7 @@ do
"dlls/rsaenh/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/rsaenh/Makefile" ;;
"dlls/rsaenh/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/rsaenh/tests/Makefile" ;;
"dlls/sane.ds/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sane.ds/Makefile" ;;
"dlls/sccbase/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sccbase/Makefile" ;;
"dlls/schannel/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/schannel/Makefile" ;;
"dlls/schannel/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/schannel/tests/Makefile" ;;
"dlls/secur32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/secur32/Makefile" ;;
...
...
configure.ac
View file @
322d4cab
...
...
@@ -1884,6 +1884,7 @@ AC_CONFIG_FILES([dlls/rsabase/tests/Makefile])
AC_CONFIG_FILES([dlls/rsaenh/Makefile])
AC_CONFIG_FILES([dlls/rsaenh/tests/Makefile])
AC_CONFIG_FILES([dlls/sane.ds/Makefile])
AC_CONFIG_FILES([dlls/sccbase/Makefile])
AC_CONFIG_FILES([dlls/schannel/Makefile])
AC_CONFIG_FILES([dlls/schannel/tests/Makefile])
AC_CONFIG_FILES([dlls/secur32/Makefile])
...
...
dlls/Makefile.in
View file @
322d4cab
...
...
@@ -183,6 +183,7 @@ BASEDIRS = \
rsabase
\
rsaenh
\
sane.ds
\
sccbase
\
schannel
\
secur32
\
security
\
...
...
dlls/sccbase/Makefile.in
0 → 100644
View file @
322d4cab
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
sccbase.dll
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/sccbase/main.c
0 → 100644
View file @
322d4cab
/*
* Copyright 2008 Maarten Lankhorst
*
* 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 "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
sccbase
);
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
;
case
DLL_PROCESS_DETACH
:
break
;
default:
break
;
}
return
TRUE
;
}
dlls/sccbase/sccbase.spec
0 → 100644
View file @
322d4cab
@ stub CPAcquireContext
@ stub CPAcquireContextW
@ stub CPCreateHash
@ stub CPDecrypt
@ stub CPDeriveKey
@ stub CPDestroyHash
@ stub CPDestroyKey
@ stub CPEncrypt
@ stub CPExportKey
@ stub CPGenKey
@ stub CPGenRandom
@ stub CPGetHashParam
@ stub CPGetKeyParam
@ stub CPGetProvParam
@ stub CPGetUserKey
@ stub CPHashData
@ stub CPHashSessionKey
@ stub CPImportKey
@ stub CPReleaseContext
@ stub CPSetHashParam
@ stub CPSetKeyParam
@ stub CPSetProvParam
@ stub CPSignHash
@ stub CPVerifySignature
@ stub DllRegisterServer
@ stub DllUnregisterServer
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