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
a8697b58
Commit
a8697b58
authored
Jun 19, 2007
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jun 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntprint: Add a stub for ntprint.dll.
parent
aec01bfc
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
111 additions
and
0 deletions
+111
-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/ntprint/Makefile.in
+13
-0
ntprint.c
dlls/ntprint/ntprint.c
+56
-0
ntprint.spec
dlls/ntprint/ntprint.spec
+35
-0
No files found.
Makefile.in
View file @
a8697b58
...
...
@@ -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
...
...
configure
View file @
a8697b58
...
...
@@ -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" ;;
...
...
configure.ac
View file @
a8697b58
...
...
@@ -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])
...
...
dlls/Makefile.in
View file @
a8697b58
...
...
@@ -132,6 +132,7 @@ BASEDIRS = \
ntdll
\
ntdsapi
\
ntoskrnl.exe
\
ntprint
\
objsel
\
odbc32
\
odbccp32
\
...
...
dlls/ntprint/Makefile.in
0 → 100644
View file @
a8697b58
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
dlls/ntprint/ntprint.c
0 → 100644
View file @
a8697b58
/*
* 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
;
}
dlls/ntprint/ntprint.spec
0 → 100644
View file @
a8697b58
@ 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
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