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
b3a9699a
Commit
b3a9699a
authored
Feb 17, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Feb 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slbcsp: Add initial stub dll.
parent
322d4cab
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
93 additions
and
0 deletions
+93
-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/slbcsp/Makefile.in
+13
-0
main.c
dlls/slbcsp/main.c
+46
-0
slbcsp.spec
dlls/slbcsp/slbcsp.spec
+27
-0
No files found.
Makefile.in
View file @
b3a9699a
...
...
@@ -406,6 +406,7 @@ ALL_MAKEFILES = \
dlls/shfolder/Makefile
\
dlls/shlwapi/Makefile
\
dlls/shlwapi/tests/Makefile
\
dlls/slbcsp/Makefile
\
dlls/snmpapi/Makefile
\
dlls/snmpapi/tests/Makefile
\
dlls/spoolss/Makefile
\
...
...
@@ -802,6 +803,7 @@ dlls/shell32/tests/Makefile: dlls/shell32/tests/Makefile.in dlls/Maketest.rules
dlls/shfolder/Makefile
:
dlls/shfolder/Makefile.in dlls/Makedll.rules
dlls/shlwapi/Makefile
:
dlls/shlwapi/Makefile.in dlls/Makedll.rules
dlls/shlwapi/tests/Makefile
:
dlls/shlwapi/tests/Makefile.in dlls/Maketest.rules
dlls/slbcsp/Makefile
:
dlls/slbcsp/Makefile.in dlls/Makedll.rules
dlls/snmpapi/Makefile
:
dlls/snmpapi/Makefile.in dlls/Makedll.rules
dlls/snmpapi/tests/Makefile
:
dlls/snmpapi/tests/Makefile.in dlls/Maketest.rules
dlls/spoolss/Makefile
:
dlls/spoolss/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
b3a9699a
...
...
@@ -21663,6 +21663,8 @@ ac_config_files="$ac_config_files dlls/shlwapi/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/shlwapi/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/slbcsp/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/snmpapi/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/snmpapi/tests/Makefile"
...
...
@@ -22743,6 +22745,7 @@ do
"dlls/shfolder/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/shfolder/Makefile" ;;
"dlls/shlwapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/shlwapi/Makefile" ;;
"dlls/shlwapi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/shlwapi/tests/Makefile" ;;
"dlls/slbcsp/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/slbcsp/Makefile" ;;
"dlls/snmpapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/snmpapi/Makefile" ;;
"dlls/snmpapi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/snmpapi/tests/Makefile" ;;
"dlls/spoolss/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/spoolss/Makefile" ;;
...
...
configure.ac
View file @
b3a9699a
...
...
@@ -1905,6 +1905,7 @@ AC_CONFIG_FILES([dlls/shell32/tests/Makefile])
AC_CONFIG_FILES([dlls/shfolder/Makefile])
AC_CONFIG_FILES([dlls/shlwapi/Makefile])
AC_CONFIG_FILES([dlls/shlwapi/tests/Makefile])
AC_CONFIG_FILES([dlls/slbcsp/Makefile])
AC_CONFIG_FILES([dlls/snmpapi/Makefile])
AC_CONFIG_FILES([dlls/snmpapi/tests/Makefile])
AC_CONFIG_FILES([dlls/spoolss/Makefile])
...
...
dlls/Makefile.in
View file @
b3a9699a
...
...
@@ -197,6 +197,7 @@ BASEDIRS = \
shell32
\
shfolder
\
shlwapi
\
slbcsp
\
snmpapi
\
spoolss
\
stdole2.tlb
\
...
...
dlls/slbcsp/Makefile.in
0 → 100644
View file @
b3a9699a
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
slbcsp.dll
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/slbcsp/main.c
0 → 100644
View file @
b3a9699a
/*
* 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
(
slbcsp
);
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/slbcsp/slbcsp.spec
0 → 100644
View file @
b3a9699a
@ stub CPAcquireContext
@ stub CPSetHashParam
@ stub CPSetKeyParam
@ stub CPSetProvParam
@ stub CPCreateHash
@ stub CPDecrypt
@ stub CPDeriveKey
@ stub CPDestroyHash
@ stub CPDestroyKey
@ stub CPDuplicateHash
@ stub CPDuplicateKey
@ 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 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