ntprint: Add a stub for ntprint.dll.
This commit is contained in:
parent
aec01bfcf4
commit
a8697b58f1
|
@ -314,6 +314,7 @@ ALL_MAKEFILES = \
|
|||
dlls/ntdll/tests/Makefile \
|
||||
dlls/ntdsapi/Makefile \
|
||||
dlls/ntoskrnl.exe/Makefile \
|
||||
dlls/ntprint/Makefile \
|
||||
dlls/objsel/Makefile \
|
||||
dlls/odbc32/Makefile \
|
||||
dlls/odbccp32/Makefile \
|
||||
|
@ -669,6 +670,7 @@ dlls/ntdll/Makefile: dlls/ntdll/Makefile.in dlls/Makedll.rules
|
|||
dlls/ntdll/tests/Makefile: dlls/ntdll/tests/Makefile.in dlls/Maketest.rules
|
||||
dlls/ntdsapi/Makefile: dlls/ntdsapi/Makefile.in dlls/Makedll.rules
|
||||
dlls/ntoskrnl.exe/Makefile: dlls/ntoskrnl.exe/Makefile.in dlls/Makedll.rules
|
||||
dlls/ntprint/Makefile: dlls/ntprint/Makefile.in dlls/Makedll.rules
|
||||
dlls/objsel/Makefile: dlls/objsel/Makefile.in dlls/Makedll.rules
|
||||
dlls/odbc32/Makefile: dlls/odbc32/Makefile.in dlls/Makedll.rules
|
||||
dlls/odbccp32/Makefile: dlls/odbccp32/Makefile.in dlls/Makedll.rules
|
||||
|
|
|
@ -20692,6 +20692,8 @@ ac_config_files="$ac_config_files dlls/ntdsapi/Makefile"
|
|||
|
||||
ac_config_files="$ac_config_files dlls/ntoskrnl.exe/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/ntprint/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/objsel/Makefile"
|
||||
|
||||
ac_config_files="$ac_config_files dlls/odbc32/Makefile"
|
||||
|
@ -21782,6 +21784,7 @@ do
|
|||
"dlls/ntdll/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntdll/tests/Makefile" ;;
|
||||
"dlls/ntdsapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntdsapi/Makefile" ;;
|
||||
"dlls/ntoskrnl.exe/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntoskrnl.exe/Makefile" ;;
|
||||
"dlls/ntprint/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ntprint/Makefile" ;;
|
||||
"dlls/objsel/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/objsel/Makefile" ;;
|
||||
"dlls/odbc32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbc32/Makefile" ;;
|
||||
"dlls/odbccp32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbccp32/Makefile" ;;
|
||||
|
|
|
@ -1597,6 +1597,7 @@ AC_CONFIG_FILES([dlls/ntdll/Makefile])
|
|||
AC_CONFIG_FILES([dlls/ntdll/tests/Makefile])
|
||||
AC_CONFIG_FILES([dlls/ntdsapi/Makefile])
|
||||
AC_CONFIG_FILES([dlls/ntoskrnl.exe/Makefile])
|
||||
AC_CONFIG_FILES([dlls/ntprint/Makefile])
|
||||
AC_CONFIG_FILES([dlls/objsel/Makefile])
|
||||
AC_CONFIG_FILES([dlls/odbc32/Makefile])
|
||||
AC_CONFIG_FILES([dlls/odbccp32/Makefile])
|
||||
|
|
|
@ -132,6 +132,7 @@ BASEDIRS = \
|
|||
ntdll \
|
||||
ntdsapi \
|
||||
ntoskrnl.exe \
|
||||
ntprint \
|
||||
objsel \
|
||||
odbc32 \
|
||||
odbccp32 \
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = ntprint.dll
|
||||
IMPORTS = kernel32
|
||||
|
||||
C_SRCS = \
|
||||
ntprint.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|
|
@ -0,0 +1,56 @@
|
|||
/*
|
||||
* Implementation of the Spooler Setup API (Printing)
|
||||
*
|
||||
* Copyright 2007 Detlef Riekenberg
|
||||
*
|
||||
* 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>
|
||||
|
||||
#define COBJMACROS
|
||||
#define NONAMELESSUNION
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winver.h"
|
||||
#include "winnls.h"
|
||||
|
||||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(ntprint);
|
||||
|
||||
HINSTANCE NTPRINT_hInstance = NULL;
|
||||
|
||||
/*****************************************************
|
||||
* DllMain
|
||||
*/
|
||||
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
{
|
||||
TRACE("(%p, %d, %p)\n",hinstDLL, fdwReason, lpvReserved);
|
||||
|
||||
switch(fdwReason)
|
||||
{
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
|
||||
case DLL_PROCESS_ATTACH:
|
||||
NTPRINT_hInstance = hinstDLL;
|
||||
DisableThreadLibraryCalls( hinstDLL );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
@ stub ClassInstall32
|
||||
@ stub PSetupAssociateICMProfiles
|
||||
@ stub PSetupBuildDriversFromPath
|
||||
@ stub PSetupCreateDrvSetupPage
|
||||
@ stub PSetupCreateMonitorInfo
|
||||
@ stub PSetupCreatePrinterDeviceInfoList
|
||||
@ stub PSetupDestroyDriverInfo3
|
||||
@ stub PSetupDestroyMonitorInfo
|
||||
@ stub PSetupDestroyPrinterDeviceInfoList
|
||||
@ stub PSetupDestroySelectedDriverInfo
|
||||
@ stub PSetupDriverInfoFromName
|
||||
@ stub PSetupEnumMonitor
|
||||
@ stub PSetupFreeDrvField
|
||||
@ stub PSetupGetDriverInfForPrinter
|
||||
@ stub PSetupGetDriverInfo3
|
||||
@ stub PSetupGetLocalDataField
|
||||
@ stub PSetupGetPathToSearch
|
||||
@ stub PSetupGetSelectedDriverInfo
|
||||
@ stub PSetupInstallICMProfiles
|
||||
@ stub PSetupInstallMonitor
|
||||
@ stub PSetupInstallPrinterDriver
|
||||
@ stub PSetupInstallPrinterDriverFromTheWeb
|
||||
@ stub PSetupIsCompatibleDriver
|
||||
@ stub PSetupIsDriverInstalled
|
||||
@ stub PSetupIsMonitorInstalled
|
||||
@ stub PSetupIsOemDriver
|
||||
@ stub PSetupIsTheDriverFoundInInfInstalled
|
||||
@ stub PSetupKillBadUserConnections
|
||||
@ stub PSetupPreSelectDriver
|
||||
@ stub PSetupProcessPrinterAdded
|
||||
@ stub PSetupRefreshDriverList
|
||||
@ stub PSetupSelectDeviceButtons
|
||||
@ stub PSetupSelectDriver
|
||||
@ stub PSetupSetSelectDevTitleAndInstructions
|
||||
@ stub PSetupThisPlatform
|
Loading…
Reference in New Issue