Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
16ab1bdd
Commit
16ab1bdd
authored
Oct 22, 2014
by
Jactry Zeng
Committed by
Alexandre Julliard
Oct 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prntvpt: Add stub dll.
parent
b48e7474
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
77 additions
and
0 deletions
+77
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/prntvpt/Makefile.in
+4
-0
main.c
dlls/prntvpt/main.c
+43
-0
prntvpt.spec
dlls/prntvpt/prntvpt.spec
+27
-0
No files found.
configure
View file @
16ab1bdd
...
...
@@ -1180,6 +1180,7 @@ enable_photometadatahandler
enable_pidgen
enable_powrprof
enable_printui
enable_prntvpt
enable_propsys
enable_psapi
enable_pstorec
...
...
@@ -17224,6 +17225,7 @@ wine_fn_config_dll photometadatahandler enable_photometadatahandler
wine_fn_config_dll pidgen enable_pidgen
wine_fn_config_dll powrprof enable_powrprof implib
wine_fn_config_dll printui enable_printui
wine_fn_config_dll prntvpt enable_prntvpt
wine_fn_config_dll propsys enable_propsys clean,implib
wine_fn_config_test dlls/propsys/tests propsys_test
wine_fn_config_dll psapi enable_psapi implib
...
...
configure.ac
View file @
16ab1bdd
...
...
@@ -3108,6 +3108,7 @@ WINE_CONFIG_DLL(photometadatahandler)
WINE_CONFIG_DLL(pidgen)
WINE_CONFIG_DLL(powrprof,,[implib])
WINE_CONFIG_DLL(printui)
WINE_CONFIG_DLL(prntvpt)
WINE_CONFIG_DLL(propsys,,[clean,implib])
WINE_CONFIG_TEST(dlls/propsys/tests)
WINE_CONFIG_DLL(psapi,,[implib])
...
...
dlls/prntvpt/Makefile.in
0 → 100644
View file @
16ab1bdd
MODULE
=
prntvpt.dll
C_SRCS
=
\
main.c
dlls/prntvpt/main.c
0 → 100644
View file @
16ab1bdd
/*
* Print Ticket Services Module
*
* Copyright 2014 Jactry Zeng for CodeWeavers
*
* 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
(
prntvpt
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinst
);
break
;
}
return
TRUE
;
}
dlls/prntvpt/prntvpt.spec
0 → 100644
View file @
16ab1bdd
1 stub PTQuerySchemaVersionSupport
2 stub PTOpenProvider
3 stub PTOpenProviderEx
4 stub PTCloseProvider
5 stub BindPTProviderThunk
6 stub PTGetPrintCapabilities
7 stub PTMergeAndValidatePrintTicket
8 stub PTConvertPrintTicketToDevMode
9 stub PTConvertDevModeToPrintTicket
10 stub PTReleaseMemory
11 stub ConvertDevModeToPrintTicketThunk2
12 stub ConvertDevModeToPrintTicketThunk
13 stub ConvertPrintTicketToDevModeThunk2
14 stub ConvertPrintTicketToDevModeThunk
15 stub DllCanUnloadNow
16 stub DllGetClassObject
17 stdcall -private DllMain(long long ptr)
18 stub DllRegisterServer
19 stub DllUnregisterServer
20 stub GetDeviceDefaultPrintTicketThunk
21 stub GetDeviceNamespacesThunk
22 stub GetPrintCapabilitiesThunk2
23 stub GetPrintCapabilitiesThunk
24 stub GetSchemaVersionThunk
25 stub MergeAndValidatePrintTicketThunk2
26 stub MergeAndValidatePrintTicketThunk
27 stub UnbindPTProviderThunk
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