mssip32: Add initial stub dll.
This commit is contained in:
parent
7c3d24bf5c
commit
c438d23902
|
@ -317,6 +317,7 @@ ALL_MAKEFILES = \
|
|||
dlls/msisys.ocx/Makefile \
|
||||
dlls/msnet32/Makefile \
|
||||
dlls/msrle32/Makefile \
|
||||
dlls/mssip32/Makefile \
|
||||
dlls/msvcirt/Makefile \
|
||||
dlls/msvcr71/Makefile \
|
||||
dlls/msvcrt/Makefile \
|
||||
|
@ -711,6 +712,7 @@ dlls/msimtf/Makefile: dlls/msimtf/Makefile.in dlls/Makedll.rules
|
|||
dlls/msisys.ocx/Makefile: dlls/msisys.ocx/Makefile.in dlls/Makedll.rules
|
||||
dlls/msnet32/Makefile: dlls/msnet32/Makefile.in dlls/Makedll.rules
|
||||
dlls/msrle32/Makefile: dlls/msrle32/Makefile.in dlls/Makedll.rules
|
||||
dlls/mssip32/Makefile: dlls/mssip32/Makefile.in dlls/Makedll.rules
|
||||
dlls/msvcirt/Makefile: dlls/msvcirt/Makefile.in dlls/Makedll.rules
|
||||
dlls/msvcr71/Makefile: dlls/msvcr71/Makefile.in dlls/Makedll.rules
|
||||
dlls/msvcrt/Makefile: dlls/msvcrt/Makefile.in dlls/Makedll.rules
|
||||
|
|
|
@ -21485,6 +21485,8 @@ ac_config_files="$ac_config_files dlls/msnet32/Makefile"
|
|||
|
||||
ac_config_files="$ac_config_files dlls/msrle32/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/mssip32/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/msvcirt/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/msvcr71/Makefile"
|
||||
|
@ -22650,6 +22652,7 @@ do
|
|||
"dlls/msisys.ocx/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msisys.ocx/Makefile" ;;
|
||||
"dlls/msnet32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msnet32/Makefile" ;;
|
||||
"dlls/msrle32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msrle32/Makefile" ;;
|
||||
"dlls/mssip32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mssip32/Makefile" ;;
|
||||
"dlls/msvcirt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcirt/Makefile" ;;
|
||||
"dlls/msvcr71/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcr71/Makefile" ;;
|
||||
"dlls/msvcrt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcrt/Makefile" ;;
|
||||
|
|
|
@ -1816,6 +1816,7 @@ AC_CONFIG_FILES([dlls/msimtf/Makefile])
|
|||
AC_CONFIG_FILES([dlls/msisys.ocx/Makefile])
|
||||
AC_CONFIG_FILES([dlls/msnet32/Makefile])
|
||||
AC_CONFIG_FILES([dlls/msrle32/Makefile])
|
||||
AC_CONFIG_FILES([dlls/mssip32/Makefile])
|
||||
AC_CONFIG_FILES([dlls/msvcirt/Makefile])
|
||||
AC_CONFIG_FILES([dlls/msvcr71/Makefile])
|
||||
AC_CONFIG_FILES([dlls/msvcrt/Makefile])
|
||||
|
|
|
@ -135,6 +135,7 @@ BASEDIRS = \
|
|||
msisys.ocx \
|
||||
msnet32 \
|
||||
msrle32 \
|
||||
mssip32 \
|
||||
msvcirt \
|
||||
msvcr71 \
|
||||
msvcrt \
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = mssip32.dll
|
||||
IMPORTS = kernel32
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* 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(mssip32);
|
||||
|
||||
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;
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
@ stub CryptSIPGetInfo
|
||||
@ stub CryptSIPGetRegWorkingFlags
|
||||
@ stub CryptSIPCreateIndirectData
|
||||
@ stub CryptSIPGetSignedDataMsg
|
||||
@ stub CryptSIPPutSignedDataMsg
|
||||
@ stub CryptSIPRemoveSignedDataMsg
|
||||
@ stub CryptSIPVerifyIndirectData
|
||||
@ stub DllRegisterServer
|
||||
@ stub DllUnregisterServer
|
Loading…
Reference in New Issue