2002-06-01 01:06:46 +02:00
|
|
|
/*
|
1999-05-17 18:20:51 +02:00
|
|
|
* WINSPOOL functions
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
* Copyright 1996 John Harvey
|
|
|
|
* Copyright 1998 Andreas Mohr
|
2000-05-26 01:02:46 +02:00
|
|
|
* Copyright 1999 Klaas van Gend
|
|
|
|
* Copyright 1999, 2000 Huw D M Davies
|
2001-04-27 20:02:46 +02:00
|
|
|
* Copyright 2001 Marcus Meissner
|
2007-01-05 01:11:21 +01:00
|
|
|
* Copyright 2005, 2006, 2007 Detlef Riekenberg
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
|
2001-04-27 20:02:46 +02:00
|
|
|
#include "config.h"
|
2002-11-12 03:22:24 +01:00
|
|
|
#include "wine/port.h"
|
2001-04-27 20:02:46 +02:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-11-29 19:38:24 +01:00
|
|
|
#include <stdio.h>
|
1999-05-17 18:20:51 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2000-05-26 01:02:46 +02:00
|
|
|
#include <stddef.h>
|
2005-07-22 11:04:08 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2005-07-20 19:48:53 +02:00
|
|
|
#include <signal.h>
|
2002-11-12 03:22:24 +01:00
|
|
|
#ifdef HAVE_CUPS_CUPS_H
|
2001-04-27 20:02:46 +02:00
|
|
|
# include <cups/cups.h>
|
|
|
|
#endif
|
2003-01-07 21:36:20 +01:00
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
|
|
|
#include "wine/library.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
1999-05-17 18:20:51 +02:00
|
|
|
#include "winbase.h"
|
2003-05-20 01:19:21 +02:00
|
|
|
#include "winuser.h"
|
1999-05-17 18:20:51 +02:00
|
|
|
#include "winerror.h"
|
|
|
|
#include "winreg.h"
|
2003-01-08 00:09:22 +01:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winspool.h"
|
2003-01-03 04:04:46 +01:00
|
|
|
#include "winternl.h"
|
2000-09-27 00:20:14 +02:00
|
|
|
#include "wine/windef16.h"
|
2000-08-14 16:41:19 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2005-07-06 17:44:15 +02:00
|
|
|
#include "wine/list.h"
|
2000-05-26 01:02:46 +02:00
|
|
|
#include "winnls.h"
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
#include "ddk/winsplp.h"
|
2005-07-12 19:01:44 +02:00
|
|
|
#include "wspool.h"
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(winspool);
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-09-02 22:55:25 +02:00
|
|
|
/* ############################### */
|
|
|
|
|
|
|
|
static CRITICAL_SECTION monitor_handles_cs;
|
|
|
|
static CRITICAL_SECTION_DEBUG monitor_handles_cs_debug =
|
|
|
|
{
|
|
|
|
0, 0, &monitor_handles_cs,
|
|
|
|
{ &monitor_handles_cs_debug.ProcessLocksList, &monitor_handles_cs_debug.ProcessLocksList },
|
|
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": monitor_handles_cs") }
|
|
|
|
};
|
|
|
|
static CRITICAL_SECTION monitor_handles_cs = { &monitor_handles_cs_debug, -1, 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
static CRITICAL_SECTION printer_handles_cs;
|
|
|
|
static CRITICAL_SECTION_DEBUG printer_handles_cs_debug =
|
|
|
|
{
|
|
|
|
0, 0, &printer_handles_cs,
|
|
|
|
{ &printer_handles_cs_debug.ProcessLocksList, &printer_handles_cs_debug.ProcessLocksList },
|
2005-09-09 12:19:44 +02:00
|
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": printer_handles_cs") }
|
2005-07-05 13:00:09 +02:00
|
|
|
};
|
|
|
|
static CRITICAL_SECTION printer_handles_cs = { &printer_handles_cs_debug, -1, 0, 0, 0, 0 };
|
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
/* ############################### */
|
|
|
|
|
2007-08-15 23:30:59 +02:00
|
|
|
typedef struct {
|
|
|
|
WCHAR src[MAX_PATH+MAX_PATH];
|
|
|
|
WCHAR dst[MAX_PATH+MAX_PATH];
|
|
|
|
DWORD srclen;
|
|
|
|
DWORD dstlen;
|
|
|
|
DWORD copyflags;
|
|
|
|
} apd_data_t;
|
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
typedef struct {
|
2006-09-02 22:55:25 +02:00
|
|
|
struct list entry;
|
2006-09-02 22:50:32 +02:00
|
|
|
LPWSTR name;
|
|
|
|
LPWSTR dllname;
|
|
|
|
PMONITORUI monitorUI;
|
|
|
|
LPMONITOR monitor;
|
|
|
|
HMODULE hdll;
|
|
|
|
DWORD refcount;
|
|
|
|
DWORD dwMonitorSize;
|
|
|
|
} monitor_t;
|
|
|
|
|
2005-07-08 16:19:18 +02:00
|
|
|
typedef struct {
|
|
|
|
DWORD job_id;
|
|
|
|
HANDLE hf;
|
|
|
|
} started_doc_t;
|
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
typedef struct {
|
2005-07-06 17:44:15 +02:00
|
|
|
struct list jobs;
|
2005-07-19 21:12:13 +02:00
|
|
|
LONG ref;
|
2005-10-24 17:03:02 +02:00
|
|
|
} jobqueue_t;
|
2005-07-19 21:12:13 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
LPWSTR name;
|
2007-01-05 01:09:02 +01:00
|
|
|
LPWSTR printername;
|
2007-01-05 01:09:13 +01:00
|
|
|
monitor_t *pm;
|
2007-01-05 01:09:46 +01:00
|
|
|
HANDLE hXcv;
|
2005-10-24 17:03:02 +02:00
|
|
|
jobqueue_t *queue;
|
2005-07-08 16:19:18 +02:00
|
|
|
started_doc_t *doc;
|
2005-07-05 13:00:09 +02:00
|
|
|
} opened_printer_t;
|
|
|
|
|
2005-07-06 17:44:15 +02:00
|
|
|
typedef struct {
|
|
|
|
struct list entry;
|
|
|
|
DWORD job_id;
|
|
|
|
WCHAR *filename;
|
2005-07-13 16:14:37 +02:00
|
|
|
WCHAR *document_title;
|
2005-07-06 17:44:15 +02:00
|
|
|
} job_t;
|
|
|
|
|
2006-01-18 12:26:32 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
LPCWSTR envname;
|
|
|
|
LPCWSTR subdir;
|
2006-05-11 23:59:17 +02:00
|
|
|
DWORD driverversion;
|
|
|
|
LPCWSTR versionregpath;
|
|
|
|
LPCWSTR versionsubdir;
|
2006-01-18 12:26:32 +01:00
|
|
|
} printenv_t;
|
|
|
|
|
|
|
|
/* ############################### */
|
|
|
|
|
2006-09-02 22:55:25 +02:00
|
|
|
static struct list monitor_handles = LIST_INIT( monitor_handles );
|
2006-11-28 20:04:08 +01:00
|
|
|
static monitor_t * pm_localport;
|
2006-09-02 22:55:25 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
static opened_printer_t **printer_handles;
|
2007-11-04 17:57:54 +01:00
|
|
|
static UINT nb_printer_handles;
|
2005-09-29 15:34:34 +02:00
|
|
|
static LONG next_job_id = 1;
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2002-02-02 19:42:11 +01:00
|
|
|
static DWORD (WINAPI *GDI_CallDeviceCapabilities16)( LPCSTR lpszDevice, LPCSTR lpszPort,
|
2000-11-29 19:38:24 +01:00
|
|
|
WORD fwCapability, LPSTR lpszOutput,
|
|
|
|
LPDEVMODEA lpdm );
|
2002-02-02 19:42:11 +01:00
|
|
|
static INT (WINAPI *GDI_CallExtDeviceMode16)( HWND hwnd, LPDEVMODEA lpdmOutput,
|
2000-11-29 19:38:24 +01:00
|
|
|
LPSTR lpszDevice, LPSTR lpszPort,
|
|
|
|
LPDEVMODEA lpdmInput, LPSTR lpszProfile,
|
|
|
|
DWORD fwMode );
|
|
|
|
|
2005-03-29 15:10:35 +02:00
|
|
|
static const WCHAR DriversW[] = { 'S','y','s','t','e','m','\\',
|
|
|
|
'C','u', 'r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
|
|
|
|
'c','o','n','t','r','o','l','\\',
|
|
|
|
'P','r','i','n','t','\\',
|
|
|
|
'E','n','v','i','r','o','n','m','e','n','t','s','\\',
|
2006-05-11 23:59:17 +02:00
|
|
|
'%','s','\\','D','r','i','v','e','r','s','%','s',0 };
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-03-31 14:30:10 +02:00
|
|
|
static const WCHAR MonitorsW[] = { 'S','y','s','t','e','m','\\',
|
|
|
|
'C','u', 'r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
|
|
|
|
'C','o','n','t','r','o','l','\\',
|
|
|
|
'P','r','i','n','t','\\',
|
2006-09-18 07:57:41 +02:00
|
|
|
'M','o','n','i','t','o','r','s','\\',0};
|
2006-03-31 14:30:10 +02:00
|
|
|
|
2006-05-12 16:14:59 +02:00
|
|
|
static const WCHAR PrintersW[] = {'S','y','s','t','e','m','\\',
|
|
|
|
'C','u', 'r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
|
|
|
|
'C','o','n','t','r','o','l','\\',
|
|
|
|
'P','r','i','n','t','\\',
|
|
|
|
'P','r','i','n','t','e','r','s',0};
|
|
|
|
|
2006-11-29 11:04:13 +01:00
|
|
|
static const WCHAR LocalPortW[] = {'L','o','c','a','l',' ','P','o','r','t',0};
|
2006-03-31 14:30:10 +02:00
|
|
|
|
2005-03-31 12:06:46 +02:00
|
|
|
static const WCHAR user_default_reg_key[] = { 'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s',' ','N','T','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'W','i','n','d','o','w','s',0};
|
|
|
|
|
|
|
|
static const WCHAR user_printers_reg_key[] = { 'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s',' ','N','T','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'D','e','v','i','c','e','s',0};
|
|
|
|
|
2006-11-09 00:04:08 +01:00
|
|
|
static const WCHAR WinNT_CV_PortsW[] = {'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s',' ','N','T','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'P','o','r','t','s',0};
|
|
|
|
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR DefaultEnvironmentW[] = {'W','i','n','e',0};
|
2006-01-18 12:26:32 +01:00
|
|
|
static const WCHAR envname_win40W[] = {'W','i','n','d','o','w','s',' ','4','.','0',0};
|
|
|
|
static const WCHAR envname_x86W[] = {'W','i','n','d','o','w','s',' ','N','T',' ','x','8','6',0};
|
|
|
|
static const WCHAR subdir_win40W[] = {'w','i','n','4','0',0};
|
|
|
|
static const WCHAR subdir_x86W[] = {'w','3','2','x','8','6',0};
|
2007-07-26 22:54:14 +02:00
|
|
|
static const WCHAR Version0_RegPathW[] = {'\\','V','e','r','s','i','o','n','-','0',0};
|
|
|
|
static const WCHAR Version0_SubdirW[] = {'\\','0',0};
|
2006-05-11 23:59:17 +02:00
|
|
|
static const WCHAR Version3_RegPathW[] = {'\\','V','e','r','s','i','o','n','-','3',0};
|
|
|
|
static const WCHAR Version3_SubdirW[] = {'\\','3',0};
|
2006-01-18 12:26:32 +01:00
|
|
|
|
|
|
|
static const WCHAR spooldriversW[] = {'\\','s','p','o','o','l','\\','d','r','i','v','e','r','s','\\',0};
|
2006-05-28 21:56:52 +02:00
|
|
|
static const WCHAR spoolprtprocsW[] = {'\\','s','p','o','o','l','\\','p','r','t','p','r','o','c','s','\\',0};
|
2000-05-26 01:02:46 +02:00
|
|
|
|
2007-07-26 23:05:27 +02:00
|
|
|
static const WCHAR backslashW[] = {'\\',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR Configuration_FileW[] = {'C','o','n','f','i','g','u','r','a','t',
|
2000-05-26 01:02:46 +02:00
|
|
|
'i','o','n',' ','F','i','l','e',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR DatatypeW[] = {'D','a','t','a','t','y','p','e',0};
|
|
|
|
static const WCHAR Data_FileW[] = {'D','a','t','a',' ','F','i','l','e',0};
|
2007-07-26 23:37:22 +02:00
|
|
|
static const WCHAR Default_DevModeW[] = {'D','e','f','a','u','l','t',' ','D','e','v','M','o','d','e',0};
|
|
|
|
static const WCHAR Dependent_FilesW[] = {'D','e','p','e','n','d','e','n','t',' ','F','i','l','e','s',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR DescriptionW[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
|
|
|
|
static const WCHAR DriverW[] = {'D','r','i','v','e','r',0};
|
2007-07-26 23:37:22 +02:00
|
|
|
static const WCHAR HardwareIDW[] = {'H','a','r','d','w','a','r','e','I','D',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR Help_FileW[] = {'H','e','l','p',' ','F','i','l','e',0};
|
|
|
|
static const WCHAR LocationW[] = {'L','o','c','a','t','i','o','n',0};
|
2007-07-26 23:37:22 +02:00
|
|
|
static const WCHAR ManufacturerW[] = {'M','a','n','u','f','a','c','t','u','r','e','r',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR MonitorW[] = {'M','o','n','i','t','o','r',0};
|
2007-01-11 13:10:37 +01:00
|
|
|
static const WCHAR MonitorUIW[] = {'M','o','n','i','t','o','r','U','I',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR NameW[] = {'N','a','m','e',0};
|
2007-07-26 23:37:22 +02:00
|
|
|
static const WCHAR OEM_UrlW[] = {'O','E','M',' ','U','r','l',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR ParametersW[] = {'P','a','r','a','m','e','t','e','r','s',0};
|
|
|
|
static const WCHAR PortW[] = {'P','o','r','t',0};
|
2006-11-09 00:04:08 +01:00
|
|
|
static const WCHAR bs_Ports_bsW[] = {'\\','P','o','r','t','s','\\',0};
|
2007-07-26 23:37:22 +02:00
|
|
|
static const WCHAR Previous_NamesW[] = {'P','r','e','v','i','o','u','s',' ','N','a','m','e','s',0};
|
|
|
|
static const WCHAR Print_ProcessorW[] = {'P','r','i','n','t',' ','P','r','o','c','e','s','s','o','r',0};
|
|
|
|
static const WCHAR Printer_DriverW[] = {'P','r','i','n','t','e','r',' ','D','r','i','v','e','r',0};
|
|
|
|
static const WCHAR PrinterDriverDataW[] = {'P','r','i','n','t','e','r','D','r','i','v','e','r','D','a','t','a',0};
|
|
|
|
static const WCHAR ProviderW[] = {'P','r','o','v','i','d','e','r',0};
|
|
|
|
static const WCHAR Separator_FileW[] = {'S','e','p','a','r','a','t','o','r',' ','F','i','l','e',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR Share_NameW[] = {'S','h','a','r','e',' ','N','a','m','e',0};
|
2007-08-15 23:30:59 +02:00
|
|
|
static const WCHAR VersionW[] = {'V','e','r','s','i','o','n',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR WinPrintW[] = {'W','i','n','P','r','i','n','t',0};
|
2004-03-07 04:46:54 +01:00
|
|
|
static const WCHAR deviceW[] = {'d','e','v','i','c','e',0};
|
2003-11-11 21:38:51 +01:00
|
|
|
static const WCHAR devicesW[] = {'d','e','v','i','c','e','s',0};
|
2004-03-07 04:46:54 +01:00
|
|
|
static const WCHAR windowsW[] = {'w','i','n','d','o','w','s',0};
|
|
|
|
static const WCHAR emptyStringW[] = {0};
|
2007-01-05 01:09:13 +01:00
|
|
|
static const WCHAR XcvMonitorW[] = {',','X','c','v','M','o','n','i','t','o','r',' ',0};
|
|
|
|
static const WCHAR XcvPortW[] = {',','X','c','v','P','o','r','t',' ',0};
|
2003-11-05 01:36:47 +01:00
|
|
|
|
|
|
|
static const WCHAR May_Delete_Value[] = {'W','i','n','e','M','a','y','D','e','l','e','t','e','M','e',0};
|
2000-05-26 01:02:46 +02:00
|
|
|
|
2005-07-10 19:39:01 +02:00
|
|
|
static const WCHAR CUPS_Port[] = {'C','U','P','S',':',0};
|
|
|
|
static const WCHAR FILE_Port[] = {'F','I','L','E',':',0};
|
|
|
|
static const WCHAR LPR_Port[] = {'L','P','R',':',0};
|
|
|
|
|
2005-07-15 11:55:23 +02:00
|
|
|
static const WCHAR default_doc_title[] = {'L','o','c','a','l',' ','D','o','w','n','l','e','v','e','l',' ',
|
|
|
|
'D','o','c','u','m','e','n','t',0};
|
|
|
|
|
2007-07-26 23:14:55 +02:00
|
|
|
static const DWORD di_sizeof[] = {0, sizeof(DRIVER_INFO_1W), sizeof(DRIVER_INFO_2W),
|
|
|
|
sizeof(DRIVER_INFO_3W), sizeof(DRIVER_INFO_4W),
|
|
|
|
sizeof(DRIVER_INFO_5W), sizeof(DRIVER_INFO_6W),
|
|
|
|
0, sizeof(DRIVER_INFO_8W)};
|
2007-01-17 17:18:54 +01:00
|
|
|
|
2006-01-18 12:26:32 +01:00
|
|
|
/******************************************************************
|
|
|
|
* validate the user-supplied printing-environment [internal]
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* env [I] PTR to Environment-String or NULL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Failure: NULL
|
|
|
|
* Success: PTR to printenv_t
|
|
|
|
*
|
|
|
|
* NOTES
|
2006-02-01 12:32:10 +01:00
|
|
|
* An empty string is handled the same way as NULL.
|
2006-01-18 12:26:32 +01:00
|
|
|
* SetLastEror(ERROR_INVALID_ENVIRONMENT) is called on Failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const printenv_t * validate_envW(LPCWSTR env)
|
|
|
|
{
|
2006-05-11 23:59:17 +02:00
|
|
|
static const printenv_t env_x86 = {envname_x86W, subdir_x86W,
|
|
|
|
3, Version3_RegPathW, Version3_SubdirW};
|
|
|
|
static const printenv_t env_win40 = {envname_win40W, subdir_win40W,
|
2007-07-26 22:54:14 +02:00
|
|
|
0, Version0_RegPathW, Version0_SubdirW};
|
|
|
|
|
2006-01-18 12:26:32 +01:00
|
|
|
static const printenv_t * const all_printenv[]={&env_x86, &env_win40};
|
|
|
|
|
|
|
|
const printenv_t *result = NULL;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("testing %s\n", debugstr_w(env));
|
2006-02-01 12:32:10 +01:00
|
|
|
if (env && env[0])
|
2006-01-18 12:26:32 +01:00
|
|
|
{
|
|
|
|
for (i = 0; i < sizeof(all_printenv)/sizeof(all_printenv[0]); i++)
|
|
|
|
{
|
|
|
|
if (lstrcmpiW(env, all_printenv[i]->envname) == 0)
|
|
|
|
{
|
|
|
|
result = all_printenv[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result == NULL) {
|
|
|
|
FIXME("unsupported Environment: %s\n", debugstr_w(env));
|
|
|
|
SetLastError(ERROR_INVALID_ENVIRONMENT);
|
|
|
|
}
|
|
|
|
/* on win9x, only "Windows 4.0" is allowed, but we ignore this */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = (GetVersion() & 0x80000000) ? &env_win40 : &env_x86;
|
|
|
|
}
|
|
|
|
TRACE("using %p: %s\n", result, debugstr_w(result ? result->envname : NULL));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
/* RtlCreateUnicodeStringFromAsciiz will return an empty string in the buffer
|
|
|
|
if passed a NULL string. This returns NULLs to the result.
|
|
|
|
*/
|
|
|
|
static inline PWSTR asciitounicode( UNICODE_STRING * usBufferPtr, LPCSTR src )
|
|
|
|
{
|
|
|
|
if ( (src) )
|
|
|
|
{
|
|
|
|
RtlCreateUnicodeStringFromAsciiz(usBufferPtr, src);
|
|
|
|
return usBufferPtr->Buffer;
|
|
|
|
}
|
|
|
|
usBufferPtr->Buffer = NULL; /* so that RtlFreeUnicodeString won't barf */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-07-15 11:55:23 +02:00
|
|
|
static LPWSTR strdupW(LPCWSTR p)
|
2005-07-13 16:14:37 +02:00
|
|
|
{
|
|
|
|
LPWSTR ret;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if(!p) return NULL;
|
|
|
|
len = (strlenW(p) + 1) * sizeof(WCHAR);
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
memcpy(ret, p, len);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-11-17 15:29:40 +01:00
|
|
|
static LPSTR strdupWtoA( LPCWSTR str )
|
|
|
|
{
|
|
|
|
LPSTR ret;
|
|
|
|
INT len;
|
|
|
|
|
|
|
|
if (!str) return NULL;
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL );
|
|
|
|
ret = HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
if(ret) WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-08-15 23:30:59 +02:00
|
|
|
/******************************************************************
|
|
|
|
* apd_copyfile [internal]
|
|
|
|
*
|
|
|
|
* Copy a file from the driverdirectory to the versioned directory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static BOOL apd_copyfile(LPWSTR filename, apd_data_t *apd)
|
|
|
|
{
|
|
|
|
LPWSTR ptr;
|
|
|
|
LPWSTR srcname;
|
|
|
|
DWORD res;
|
|
|
|
|
|
|
|
apd->src[apd->srclen] = '\0';
|
|
|
|
apd->dst[apd->dstlen] = '\0';
|
|
|
|
|
|
|
|
if (!filename || !filename[0]) {
|
|
|
|
/* nothing to copy */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = strrchrW(filename, '\\');
|
|
|
|
if (ptr) {
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ptr = filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (apd->copyflags & APD_COPY_FROM_DIRECTORY) {
|
|
|
|
/* we have an absolute Path */
|
|
|
|
srcname = filename;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
srcname = apd->src;
|
|
|
|
lstrcatW(srcname, ptr);
|
|
|
|
}
|
|
|
|
lstrcatW(apd->dst, ptr);
|
|
|
|
|
|
|
|
TRACE("%s => %s\n", debugstr_w(filename), debugstr_w(apd->dst));
|
|
|
|
|
|
|
|
/* FIXME: handle APD_COPY_NEW_FILES */
|
|
|
|
res = CopyFileW(srcname, apd->dst, FALSE);
|
|
|
|
TRACE("got %u with %u\n", res, GetLastError());
|
|
|
|
|
|
|
|
/* FIXME: install of wineps.drv must be fixed, before we return the real result
|
|
|
|
return res;
|
|
|
|
*/
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* Return the number of bytes for an multi_sz string.
|
|
|
|
* The result includes all \0s
|
|
|
|
* (specifically the extra \0, that is needed as multi_sz terminator).
|
|
|
|
*/
|
|
|
|
static int multi_sz_lenW(const WCHAR *str)
|
|
|
|
{
|
|
|
|
const WCHAR *ptr = str;
|
|
|
|
if(!str) return 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ptr += lstrlenW(ptr) + 1;
|
|
|
|
} while(*ptr);
|
|
|
|
|
|
|
|
return (ptr - str + 1) * sizeof(WCHAR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ################################ */
|
|
|
|
|
2006-11-07 18:16:29 +01:00
|
|
|
static int multi_sz_lenA(const char *str)
|
|
|
|
{
|
|
|
|
const char *ptr = str;
|
|
|
|
if(!str) return 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ptr += lstrlenA(ptr) + 1;
|
|
|
|
} while(*ptr);
|
|
|
|
|
|
|
|
return ptr - str + 1;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
static void
|
2007-02-18 11:51:09 +01:00
|
|
|
WINSPOOL_SetDefaultPrinter(const char *devname, const char *name, BOOL force) {
|
2001-05-18 22:57:36 +02:00
|
|
|
char qbuf[200];
|
|
|
|
|
|
|
|
/* If forcing, or no profile string entry for device yet, set the entry
|
|
|
|
*
|
|
|
|
* The always change entry if not WINEPS yet is discussable.
|
|
|
|
*/
|
|
|
|
if (force ||
|
|
|
|
!GetProfileStringA("windows","device","*",qbuf,sizeof(qbuf)) ||
|
|
|
|
!strcmp(qbuf,"*") ||
|
2005-05-06 22:04:27 +02:00
|
|
|
!strstr(qbuf,"WINEPS.DRV")
|
2001-05-18 22:57:36 +02:00
|
|
|
) {
|
2005-05-06 22:04:27 +02:00
|
|
|
char *buf = HeapAlloc(GetProcessHeap(),0,strlen(name)+strlen(devname)+strlen(",WINEPS.DRV,LPR:")+1);
|
2005-03-31 12:06:46 +02:00
|
|
|
HKEY hkey;
|
2001-05-18 22:57:36 +02:00
|
|
|
|
2005-05-06 22:04:27 +02:00
|
|
|
sprintf(buf,"%s,WINEPS.DRV,LPR:%s",devname,name);
|
2001-05-18 22:57:36 +02:00
|
|
|
WriteProfileStringA("windows","device",buf);
|
2005-03-31 12:06:46 +02:00
|
|
|
if(RegCreateKeyW(HKEY_CURRENT_USER, user_default_reg_key, &hkey) == ERROR_SUCCESS) {
|
2005-08-03 13:03:44 +02:00
|
|
|
RegSetValueExA(hkey, "Device", 0, REG_SZ, (LPBYTE)buf, strlen(buf) + 1);
|
2005-03-31 12:06:46 +02:00
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
2001-05-18 22:57:36 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,buf);
|
|
|
|
}
|
|
|
|
}
|
2001-04-27 20:02:46 +02:00
|
|
|
|
2007-02-18 11:51:09 +01:00
|
|
|
static BOOL add_printer_driver(const char *name)
|
2006-11-07 18:19:06 +01:00
|
|
|
{
|
|
|
|
DRIVER_INFO_3A di3a;
|
|
|
|
|
2007-08-22 20:24:35 +02:00
|
|
|
static char driver_9x[] = "wineps16.drv",
|
|
|
|
driver_nt[] = "wineps.drv",
|
|
|
|
env_9x[] = "Windows 4.0",
|
|
|
|
env_nt[] = "Windows NT x86",
|
|
|
|
data_file[] = "generic.ppd",
|
2006-11-07 18:19:06 +01:00
|
|
|
default_data_type[] = "RAW";
|
|
|
|
|
2007-08-22 20:24:35 +02:00
|
|
|
ZeroMemory(&di3a, sizeof(DRIVER_INFO_3A));
|
|
|
|
di3a.cVersion = 3;
|
2006-11-07 18:19:06 +01:00
|
|
|
di3a.pName = (char *)name;
|
2007-08-22 20:24:35 +02:00
|
|
|
di3a.pEnvironment = env_nt;
|
|
|
|
di3a.pDriverPath = driver_nt;
|
2006-11-07 18:19:06 +01:00
|
|
|
di3a.pDataFile = data_file;
|
2007-08-22 20:24:35 +02:00
|
|
|
di3a.pConfigFile = driver_nt;
|
2006-11-07 18:19:06 +01:00
|
|
|
di3a.pDefaultDataType = default_data_type;
|
|
|
|
|
2007-11-05 22:48:07 +01:00
|
|
|
if (AddPrinterDriverA(NULL, 3, (LPBYTE)&di3a) ||
|
|
|
|
(GetLastError() == ERROR_PRINTER_DRIVER_ALREADY_INSTALLED ))
|
2006-11-07 18:19:06 +01:00
|
|
|
{
|
2007-08-22 20:24:35 +02:00
|
|
|
di3a.cVersion = 0;
|
|
|
|
di3a.pEnvironment = env_9x;
|
|
|
|
di3a.pDriverPath = driver_9x;
|
|
|
|
di3a.pConfigFile = driver_9x;
|
2007-11-05 22:48:07 +01:00
|
|
|
if (AddPrinterDriverA(NULL, 3, (LPBYTE)&di3a) ||
|
|
|
|
(GetLastError() == ERROR_PRINTER_DRIVER_ALREADY_INSTALLED ))
|
2007-08-22 20:24:35 +02:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
2006-11-07 18:19:06 +01:00
|
|
|
}
|
2007-11-05 22:48:07 +01:00
|
|
|
ERR("Failed adding driver %s (%s): %u\n", debugstr_a(di3a.pDriverPath),
|
|
|
|
debugstr_a(di3a.pEnvironment), GetLastError());
|
2007-08-22 20:24:35 +02:00
|
|
|
return FALSE;
|
2006-11-07 18:19:06 +01:00
|
|
|
}
|
|
|
|
|
2007-07-02 17:30:44 +02:00
|
|
|
#ifdef SONAME_LIBCUPS
|
2005-07-11 15:21:48 +02:00
|
|
|
static typeof(cupsGetDests) *pcupsGetDests;
|
|
|
|
static typeof(cupsGetPPD) *pcupsGetPPD;
|
|
|
|
static typeof(cupsPrintFile) *pcupsPrintFile;
|
|
|
|
static void *cupshandle;
|
|
|
|
|
2003-11-05 01:36:47 +01:00
|
|
|
static BOOL CUPS_LoadPrinters(void)
|
|
|
|
{
|
2003-06-23 21:52:55 +02:00
|
|
|
int i, nrofdests;
|
2007-07-05 01:22:15 +02:00
|
|
|
BOOL hadprinter = FALSE, haddefault = FALSE;
|
2003-06-23 21:52:55 +02:00
|
|
|
cups_dest_t *dests;
|
|
|
|
PRINTER_INFO_2A pinfo2a;
|
2003-02-12 22:27:27 +01:00
|
|
|
char *port,*devline;
|
2005-03-31 12:06:46 +02:00
|
|
|
HKEY hkeyPrinter, hkeyPrinters, hkey;
|
2007-07-30 19:41:03 +02:00
|
|
|
char loaderror[256];
|
2001-04-27 20:02:46 +02:00
|
|
|
|
2007-07-30 19:41:03 +02:00
|
|
|
cupshandle = wine_dlopen(SONAME_LIBCUPS, RTLD_NOW, loaderror, sizeof(loaderror));
|
|
|
|
if (!cupshandle) {
|
|
|
|
TRACE("%s\n", loaderror);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
TRACE("%p: %s loaded\n", cupshandle, SONAME_LIBCUPS);
|
2002-11-12 03:22:24 +01:00
|
|
|
|
|
|
|
#define DYNCUPS(x) \
|
|
|
|
p##x = wine_dlsym(cupshandle, #x, NULL,0); \
|
|
|
|
if (!p##x) return FALSE;
|
|
|
|
|
|
|
|
DYNCUPS(cupsGetPPD);
|
2003-06-23 21:52:55 +02:00
|
|
|
DYNCUPS(cupsGetDests);
|
2005-07-11 15:21:48 +02:00
|
|
|
DYNCUPS(cupsPrintFile);
|
2002-11-12 03:22:24 +01:00
|
|
|
#undef DYNCUPS
|
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
2003-11-05 01:36:47 +01:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-09-12 02:52:59 +02:00
|
|
|
|
2003-06-23 21:52:55 +02:00
|
|
|
nrofdests = pcupsGetDests(&dests);
|
|
|
|
TRACE("Found %d CUPS %s:\n", nrofdests, (nrofdests == 1) ? "printer" : "printers");
|
2001-04-27 20:02:46 +02:00
|
|
|
for (i=0;i<nrofdests;i++) {
|
2003-11-05 01:36:47 +01:00
|
|
|
port = HeapAlloc(GetProcessHeap(),0,strlen("LPR:")+strlen(dests[i].name)+1);
|
|
|
|
sprintf(port,"LPR:%s",dests[i].name);
|
2005-05-06 22:04:27 +02:00
|
|
|
devline=HeapAlloc(GetProcessHeap(),0,sizeof("WINEPS.DRV,")+strlen(port));
|
|
|
|
sprintf(devline,"WINEPS.DRV,%s",port);
|
2003-06-23 21:52:55 +02:00
|
|
|
WriteProfileStringA("devices",dests[i].name,devline);
|
2005-03-31 12:06:46 +02:00
|
|
|
if(RegCreateKeyW(HKEY_CURRENT_USER, user_printers_reg_key, &hkey) == ERROR_SUCCESS) {
|
2005-08-03 13:03:44 +02:00
|
|
|
RegSetValueExA(hkey, dests[i].name, 0, REG_SZ, (LPBYTE)devline, strlen(devline) + 1);
|
2005-03-31 12:06:46 +02:00
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
2001-04-27 20:02:46 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,devline);
|
|
|
|
|
2003-11-05 01:36:47 +01:00
|
|
|
TRACE("Printer %d: %s\n", i, dests[i].name);
|
|
|
|
if(RegOpenKeyA(hkeyPrinters, dests[i].name, &hkeyPrinter) == ERROR_SUCCESS) {
|
|
|
|
/* Printer already in registry, delete the tag added in WINSPOOL_LoadSystemPrinters
|
|
|
|
and continue */
|
|
|
|
TRACE("Printer already exists\n");
|
|
|
|
RegDeleteValueW(hkeyPrinter, May_Delete_Value);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
} else {
|
2006-08-19 15:22:39 +02:00
|
|
|
static CHAR data_type[] = "RAW",
|
|
|
|
print_proc[] = "WinPrint",
|
|
|
|
comment[] = "WINEPS Printer using CUPS",
|
|
|
|
location[] = "<physical location of printer>",
|
|
|
|
params[] = "<parameters?>",
|
|
|
|
share_name[] = "<share name?>",
|
|
|
|
sep_file[] = "<sep file?>";
|
|
|
|
|
2006-11-07 18:19:06 +01:00
|
|
|
add_printer_driver(dests[i].name);
|
|
|
|
|
2003-11-05 01:36:47 +01:00
|
|
|
memset(&pinfo2a,0,sizeof(pinfo2a));
|
2006-08-19 15:22:39 +02:00
|
|
|
pinfo2a.pPrinterName = dests[i].name;
|
|
|
|
pinfo2a.pDatatype = data_type;
|
|
|
|
pinfo2a.pPrintProcessor = print_proc;
|
2006-11-07 18:19:06 +01:00
|
|
|
pinfo2a.pDriverName = dests[i].name;
|
2006-08-19 15:22:39 +02:00
|
|
|
pinfo2a.pComment = comment;
|
|
|
|
pinfo2a.pLocation = location;
|
|
|
|
pinfo2a.pPortName = port;
|
|
|
|
pinfo2a.pParameters = params;
|
|
|
|
pinfo2a.pShareName = share_name;
|
|
|
|
pinfo2a.pSepFile = sep_file;
|
2003-11-05 01:36:47 +01:00
|
|
|
|
|
|
|
if (!AddPrinterA(NULL,2,(LPBYTE)&pinfo2a)) {
|
|
|
|
if (GetLastError() != ERROR_PRINTER_ALREADY_EXISTS)
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("printer '%s' not added by AddPrinterA (error %d)\n",dests[i].name,GetLastError());
|
2003-11-05 01:36:47 +01:00
|
|
|
}
|
|
|
|
}
|
2001-04-27 20:02:46 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,port);
|
2003-06-23 21:52:55 +02:00
|
|
|
|
|
|
|
hadprinter = TRUE;
|
2007-07-05 01:22:15 +02:00
|
|
|
if (dests[i].is_default) {
|
2003-06-23 21:52:55 +02:00
|
|
|
WINSPOOL_SetDefaultPrinter(dests[i].name, dests[i].name, TRUE);
|
2007-07-05 01:22:15 +02:00
|
|
|
haddefault = TRUE;
|
|
|
|
}
|
2001-04-27 20:02:46 +02:00
|
|
|
}
|
2007-07-05 01:22:15 +02:00
|
|
|
if (hadprinter & !haddefault)
|
|
|
|
WINSPOOL_SetDefaultPrinter(dests[0].name, dests[0].name, TRUE);
|
2003-11-05 01:36:47 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
2001-05-09 19:10:41 +02:00
|
|
|
return hadprinter;
|
2001-04-27 20:02:46 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-05-09 19:10:41 +02:00
|
|
|
static BOOL
|
2006-08-19 15:22:39 +02:00
|
|
|
PRINTCAP_ParseEntry(const char *pent, BOOL isfirst) {
|
2001-05-09 19:10:41 +02:00
|
|
|
PRINTER_INFO_2A pinfo2a;
|
2003-11-11 01:42:35 +01:00
|
|
|
char *e,*s,*name,*prettyname,*devname;
|
|
|
|
BOOL ret = FALSE, set_default = FALSE;
|
2007-12-14 14:56:57 +01:00
|
|
|
char *port = NULL, *devline,*env_default;
|
2005-03-31 12:06:46 +02:00
|
|
|
HKEY hkeyPrinter, hkeyPrinters, hkey;
|
2001-05-09 19:10:41 +02:00
|
|
|
|
2002-05-17 02:10:15 +02:00
|
|
|
while (isspace(*pent)) pent++;
|
2001-05-09 19:10:41 +02:00
|
|
|
s = strchr(pent,':');
|
2003-11-11 01:42:35 +01:00
|
|
|
if(s) *s='\0';
|
|
|
|
name = HeapAlloc(GetProcessHeap(), 0, strlen(pent) + 1);
|
|
|
|
strcpy(name,pent);
|
|
|
|
if(s) {
|
|
|
|
*s=':';
|
|
|
|
pent = s;
|
|
|
|
} else
|
|
|
|
pent = "";
|
|
|
|
|
|
|
|
TRACE("name=%s entry=%s\n",name, pent);
|
|
|
|
|
|
|
|
if(ispunct(*name)) { /* a tc entry, not a real printer */
|
|
|
|
TRACE("skipping tc entry\n");
|
|
|
|
goto end;
|
2001-05-09 19:10:41 +02:00
|
|
|
}
|
2003-11-11 01:42:35 +01:00
|
|
|
|
|
|
|
if(strstr(pent,":server")) { /* server only version so skip */
|
|
|
|
TRACE("skipping server entry\n");
|
|
|
|
goto end;
|
2001-05-09 19:10:41 +02:00
|
|
|
}
|
|
|
|
|
2003-11-11 01:42:35 +01:00
|
|
|
/* Determine whether this is a postscript printer. */
|
2001-05-09 19:10:41 +02:00
|
|
|
|
2003-11-11 01:42:35 +01:00
|
|
|
ret = TRUE;
|
|
|
|
env_default = getenv("PRINTER");
|
2001-05-09 19:10:41 +02:00
|
|
|
prettyname = name;
|
|
|
|
/* Get longest name, usually the one at the right for later display. */
|
2003-11-11 01:42:35 +01:00
|
|
|
while((s=strchr(prettyname,'|'))) {
|
|
|
|
*s = '\0';
|
|
|
|
e = s;
|
|
|
|
while(isspace(*--e)) *e = '\0';
|
|
|
|
TRACE("\t%s\n", debugstr_a(prettyname));
|
|
|
|
if(env_default && !strcasecmp(prettyname, env_default)) set_default = TRUE;
|
|
|
|
for(prettyname = s+1; isspace(*prettyname); prettyname++)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
e = prettyname + strlen(prettyname);
|
|
|
|
while(isspace(*--e)) *e = '\0';
|
|
|
|
TRACE("\t%s\n", debugstr_a(prettyname));
|
|
|
|
if(env_default && !strcasecmp(prettyname, env_default)) set_default = TRUE;
|
2001-05-09 19:10:41 +02:00
|
|
|
|
|
|
|
/* prettyname must fit into the dmDeviceName member of DEVMODE struct,
|
|
|
|
* if it is too long, we use it as comment below. */
|
|
|
|
devname = prettyname;
|
|
|
|
if (strlen(devname)>=CCHDEVICENAME-1)
|
|
|
|
devname = name;
|
2003-11-11 01:42:35 +01:00
|
|
|
if (strlen(devname)>=CCHDEVICENAME-1) {
|
|
|
|
ret = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
2001-05-18 22:57:36 +02:00
|
|
|
|
2001-05-09 19:10:41 +02:00
|
|
|
port = HeapAlloc(GetProcessHeap(),0,strlen("LPR:")+strlen(name)+1);
|
|
|
|
sprintf(port,"LPR:%s",name);
|
|
|
|
|
2005-05-06 22:04:27 +02:00
|
|
|
devline=HeapAlloc(GetProcessHeap(),0,sizeof("WINEPS.DRV,")+strlen(port));
|
|
|
|
sprintf(devline,"WINEPS.DRV,%s",port);
|
2001-05-09 19:10:41 +02:00
|
|
|
WriteProfileStringA("devices",devname,devline);
|
2005-03-31 12:06:46 +02:00
|
|
|
if(RegCreateKeyW(HKEY_CURRENT_USER, user_printers_reg_key, &hkey) == ERROR_SUCCESS) {
|
2005-08-03 13:03:44 +02:00
|
|
|
RegSetValueExA(hkey, devname, 0, REG_SZ, (LPBYTE)devline, strlen(devline) + 1);
|
2005-03-31 12:06:46 +02:00
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
2001-05-09 19:10:41 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,devline);
|
2003-11-11 01:42:35 +01:00
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
2003-11-11 01:42:35 +01:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
ret = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if(RegOpenKeyA(hkeyPrinters, devname, &hkeyPrinter) == ERROR_SUCCESS) {
|
|
|
|
/* Printer already in registry, delete the tag added in WINSPOOL_LoadSystemPrinters
|
|
|
|
and continue */
|
|
|
|
TRACE("Printer already exists\n");
|
|
|
|
RegDeleteValueW(hkeyPrinter, May_Delete_Value);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
} else {
|
2006-08-19 15:22:39 +02:00
|
|
|
static CHAR data_type[] = "RAW",
|
|
|
|
print_proc[] = "WinPrint",
|
|
|
|
comment[] = "WINEPS Printer using LPR",
|
|
|
|
params[] = "<parameters?>",
|
|
|
|
share_name[] = "<share name?>",
|
|
|
|
sep_file[] = "<sep file?>";
|
|
|
|
|
2006-11-07 18:19:06 +01:00
|
|
|
add_printer_driver(devname);
|
|
|
|
|
2003-11-11 01:42:35 +01:00
|
|
|
memset(&pinfo2a,0,sizeof(pinfo2a));
|
2006-08-19 15:22:39 +02:00
|
|
|
pinfo2a.pPrinterName = devname;
|
|
|
|
pinfo2a.pDatatype = data_type;
|
|
|
|
pinfo2a.pPrintProcessor = print_proc;
|
2006-11-07 18:19:06 +01:00
|
|
|
pinfo2a.pDriverName = devname;
|
2006-08-19 15:22:39 +02:00
|
|
|
pinfo2a.pComment = comment;
|
|
|
|
pinfo2a.pLocation = prettyname;
|
|
|
|
pinfo2a.pPortName = port;
|
|
|
|
pinfo2a.pParameters = params;
|
|
|
|
pinfo2a.pShareName = share_name;
|
|
|
|
pinfo2a.pSepFile = sep_file;
|
2003-11-11 01:42:35 +01:00
|
|
|
|
|
|
|
if (!AddPrinterA(NULL,2,(LPBYTE)&pinfo2a)) {
|
|
|
|
if (GetLastError()!=ERROR_PRINTER_ALREADY_EXISTS)
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("%s not added by AddPrinterA (%d)\n",name,GetLastError());
|
2003-11-11 01:42:35 +01:00
|
|
|
}
|
2001-05-09 19:10:41 +02:00
|
|
|
}
|
2003-11-11 01:42:35 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
|
|
|
|
if (isfirst || set_default)
|
|
|
|
WINSPOOL_SetDefaultPrinter(devname,name,TRUE);
|
|
|
|
|
|
|
|
end:
|
2007-12-14 14:56:57 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, port);
|
2003-11-11 01:42:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, name);
|
|
|
|
return ret;
|
2001-05-09 19:10:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL
|
|
|
|
PRINTCAP_LoadPrinters(void) {
|
2003-11-11 01:42:35 +01:00
|
|
|
BOOL hadprinter = FALSE;
|
2001-05-09 19:10:41 +02:00
|
|
|
char buf[200];
|
|
|
|
FILE *f;
|
2003-11-11 01:42:35 +01:00
|
|
|
char *pent = NULL;
|
|
|
|
BOOL had_bash = FALSE;
|
2001-05-09 19:10:41 +02:00
|
|
|
|
|
|
|
f = fopen("/etc/printcap","r");
|
|
|
|
if (!f)
|
|
|
|
return FALSE;
|
|
|
|
|
2003-11-11 01:42:35 +01:00
|
|
|
while(fgets(buf,sizeof(buf),f)) {
|
|
|
|
char *start, *end;
|
|
|
|
|
|
|
|
end=strchr(buf,'\n');
|
|
|
|
if (end) *end='\0';
|
|
|
|
|
|
|
|
start = buf;
|
|
|
|
while(isspace(*start)) start++;
|
|
|
|
if(*start == '#' || *start == '\0')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(pent && !had_bash && *start != ':' && *start != '|') { /* start of new entry, parse the previous one */
|
|
|
|
hadprinter |= PRINTCAP_ParseEntry(pent,!hadprinter);
|
|
|
|
HeapFree(GetProcessHeap(),0,pent);
|
|
|
|
pent = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end && *--end == '\\') {
|
|
|
|
*end = '\0';
|
|
|
|
had_bash = TRUE;
|
|
|
|
} else
|
|
|
|
had_bash = FALSE;
|
|
|
|
|
|
|
|
if (pent) {
|
|
|
|
pent=HeapReAlloc(GetProcessHeap(),0,pent,strlen(pent)+strlen(start)+1);
|
|
|
|
strcat(pent,start);
|
|
|
|
} else {
|
|
|
|
pent=HeapAlloc(GetProcessHeap(),0,strlen(start)+1);
|
|
|
|
strcpy(pent,start);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if(pent) {
|
|
|
|
hadprinter |= PRINTCAP_ParseEntry(pent,!hadprinter);
|
|
|
|
HeapFree(GetProcessHeap(),0,pent);
|
2001-05-09 19:10:41 +02:00
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
return hadprinter;
|
|
|
|
}
|
|
|
|
|
2003-11-11 21:38:51 +01:00
|
|
|
static inline DWORD set_reg_szW(HKEY hkey, const WCHAR *keyname, const WCHAR *value)
|
2001-10-28 22:16:38 +01:00
|
|
|
{
|
2003-06-23 21:52:55 +02:00
|
|
|
if (value)
|
2004-11-30 22:38:57 +01:00
|
|
|
return RegSetValueExW(hkey, keyname, 0, REG_SZ, (const BYTE*)value,
|
2006-11-07 18:16:29 +01:00
|
|
|
(lstrlenW(value) + 1) * sizeof(WCHAR));
|
2003-06-23 21:52:55 +02:00
|
|
|
else
|
|
|
|
return ERROR_FILE_NOT_FOUND;
|
2001-10-28 22:16:38 +01:00
|
|
|
}
|
|
|
|
|
2006-03-31 14:30:10 +02:00
|
|
|
/*****************************************************************************
|
2007-01-17 17:18:54 +01:00
|
|
|
* enumerate the local monitors (INTERNAL)
|
2006-03-31 14:30:10 +02:00
|
|
|
*
|
|
|
|
* returns the needed size (in bytes) for pMonitors
|
|
|
|
* and *lpreturned is set to number of entries returned in pMonitors
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static DWORD get_local_monitors(DWORD level, LPBYTE pMonitors, DWORD cbBuf, LPDWORD lpreturned)
|
|
|
|
{
|
|
|
|
HKEY hroot = NULL;
|
|
|
|
HKEY hentry = NULL;
|
|
|
|
LPWSTR ptr;
|
|
|
|
LPMONITOR_INFO_2W mi;
|
|
|
|
WCHAR buffer[MAX_PATH];
|
|
|
|
WCHAR dllname[MAX_PATH];
|
|
|
|
DWORD dllsize;
|
|
|
|
DWORD len;
|
|
|
|
DWORD index = 0;
|
|
|
|
DWORD needed = 0;
|
|
|
|
DWORD numentries;
|
|
|
|
DWORD entrysize;
|
|
|
|
|
|
|
|
entrysize = (level == 1) ? sizeof(MONITOR_INFO_1W) : sizeof(MONITOR_INFO_2W);
|
|
|
|
|
|
|
|
numentries = *lpreturned; /* this is 0, when we scan the registry */
|
|
|
|
len = entrysize * numentries;
|
|
|
|
ptr = (LPWSTR) &pMonitors[len];
|
|
|
|
|
|
|
|
numentries = 0;
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buffer[0] = '\0';
|
|
|
|
|
|
|
|
/* Windows creates the "Monitors"-Key on reboot / start "spooler" */
|
|
|
|
if (RegCreateKeyW(HKEY_LOCAL_MACHINE, MonitorsW, &hroot) == ERROR_SUCCESS) {
|
|
|
|
/* Scan all Monitor-Registry-Keys */
|
|
|
|
while (RegEnumKeyExW(hroot, index, buffer, &len, NULL, NULL, NULL, NULL) == ERROR_SUCCESS) {
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("Monitor_%d: %s\n", numentries, debugstr_w(buffer));
|
2006-03-31 14:30:10 +02:00
|
|
|
dllsize = sizeof(dllname);
|
|
|
|
dllname[0] = '\0';
|
|
|
|
|
|
|
|
/* The Monitor must have a Driver-DLL */
|
|
|
|
if (RegOpenKeyExW(hroot, buffer, 0, KEY_READ, &hentry) == ERROR_SUCCESS) {
|
|
|
|
if (RegQueryValueExW(hentry, DriverW, NULL, NULL, (LPBYTE) dllname, &dllsize) == ERROR_SUCCESS) {
|
|
|
|
/* We found a valid DLL for this Monitor. */
|
|
|
|
TRACE("using Driver: %s\n", debugstr_w(dllname));
|
|
|
|
}
|
|
|
|
RegCloseKey(hentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Windows returns only Port-Monitors here, but to simplify our code,
|
|
|
|
we do no filtering for Language-Monitors */
|
|
|
|
if (dllname[0]) {
|
|
|
|
numentries++;
|
|
|
|
needed += entrysize;
|
|
|
|
needed += (len+1) * sizeof(WCHAR); /* len is lstrlenW(monitorname) */
|
|
|
|
if (level > 1) {
|
|
|
|
/* we install and return only monitors for "Windows NT x86" */
|
|
|
|
needed += (lstrlenW(envname_x86W) +1) * sizeof(WCHAR);
|
|
|
|
needed += dllsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* required size is calculated. Now fill the user-buffer */
|
|
|
|
if (pMonitors && (cbBuf >= needed)){
|
|
|
|
mi = (LPMONITOR_INFO_2W) pMonitors;
|
|
|
|
pMonitors += entrysize;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p: writing MONITOR_INFO_%dW #%d\n", mi, level, numentries);
|
2006-03-31 14:30:10 +02:00
|
|
|
mi->pName = ptr;
|
|
|
|
lstrcpyW(ptr, buffer); /* Name of the Monitor */
|
|
|
|
ptr += (len+1); /* len is lstrlenW(monitorname) */
|
|
|
|
if (level > 1) {
|
|
|
|
mi->pEnvironment = ptr;
|
|
|
|
lstrcpyW(ptr, envname_x86W); /* fixed to "Windows NT x86" */
|
|
|
|
ptr += (lstrlenW(envname_x86W)+1);
|
|
|
|
|
|
|
|
mi->pDLLName = ptr;
|
|
|
|
lstrcpyW(ptr, dllname); /* Name of the Driver-DLL */
|
|
|
|
ptr += (dllsize / sizeof(WCHAR));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buffer[0] = '\0';
|
|
|
|
}
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
}
|
|
|
|
*lpreturned = numentries;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("need %d byte for %d entries\n", needed, numentries);
|
2006-03-31 14:30:10 +02:00
|
|
|
return needed;
|
|
|
|
}
|
2001-04-27 20:02:46 +02:00
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_unload [internal]
|
|
|
|
*
|
|
|
|
* release a printmonitor and unload it from memory, when needed
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void monitor_unload(monitor_t * pm)
|
|
|
|
{
|
2006-11-09 00:04:08 +01:00
|
|
|
if (pm == NULL) return;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p (refcount: %d) %s\n", pm, pm->refcount, debugstr_w(pm->name));
|
2006-09-02 22:50:32 +02:00
|
|
|
|
2006-09-02 22:55:25 +02:00
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
|
|
|
|
if (pm->refcount) pm->refcount--;
|
|
|
|
|
|
|
|
if (pm->refcount == 0) {
|
|
|
|
list_remove(&pm->entry);
|
|
|
|
FreeLibrary(pm->hdll);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pm->name);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pm->dllname);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pm);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
2006-09-02 22:50:32 +02:00
|
|
|
}
|
|
|
|
|
2006-11-04 00:27:16 +01:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_unloadall [internal]
|
|
|
|
*
|
|
|
|
* release all printmonitors and unload them from memory, when needed
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void monitor_unloadall(void)
|
|
|
|
{
|
|
|
|
monitor_t * pm;
|
|
|
|
monitor_t * next;
|
|
|
|
|
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
/* iterate through the list, with safety against removal */
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(pm, next, &monitor_handles, monitor_t, entry)
|
|
|
|
{
|
|
|
|
monitor_unload(pm);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
|
|
|
}
|
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_load [internal]
|
|
|
|
*
|
|
|
|
* load a printmonitor, get the dllname from the registry, when needed
|
|
|
|
* initialize the monitor and dump found function-pointers
|
|
|
|
*
|
|
|
|
* On failure, SetLastError() is called and NULL is returned
|
|
|
|
*/
|
|
|
|
|
2006-11-29 11:04:13 +01:00
|
|
|
static monitor_t * monitor_load(LPCWSTR name, LPWSTR dllname)
|
2006-09-02 22:50:32 +02:00
|
|
|
{
|
|
|
|
LPMONITOR2 (WINAPI *pInitializePrintMonitor2) (PMONITORINIT, LPHANDLE);
|
|
|
|
PMONITORUI (WINAPI *pInitializePrintMonitorUI)(VOID);
|
|
|
|
LPMONITOREX (WINAPI *pInitializePrintMonitor) (LPWSTR);
|
|
|
|
DWORD (WINAPI *pInitializeMonitorEx)(LPWSTR, LPMONITOR);
|
|
|
|
DWORD (WINAPI *pInitializeMonitor) (LPWSTR);
|
|
|
|
|
|
|
|
monitor_t * pm = NULL;
|
2006-09-02 22:55:25 +02:00
|
|
|
monitor_t * cursor;
|
2006-09-02 22:50:32 +02:00
|
|
|
LPWSTR regroot = NULL;
|
|
|
|
LPWSTR driver = dllname;
|
|
|
|
|
|
|
|
TRACE("(%s, %s)\n", debugstr_w(name), debugstr_w(dllname));
|
|
|
|
/* Is the Monitor already loaded? */
|
2006-09-02 22:55:25 +02:00
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
2006-09-02 22:50:32 +02:00
|
|
|
|
2007-01-11 13:05:16 +01:00
|
|
|
if (name) {
|
|
|
|
LIST_FOR_EACH_ENTRY(cursor, &monitor_handles, monitor_t, entry)
|
|
|
|
{
|
|
|
|
if (cursor->name && (lstrcmpW(name, cursor->name) == 0)) {
|
|
|
|
pm = cursor;
|
|
|
|
break;
|
|
|
|
}
|
2006-09-02 22:55:25 +02:00
|
|
|
}
|
|
|
|
}
|
2006-09-02 22:50:32 +02:00
|
|
|
|
2006-09-02 22:55:25 +02:00
|
|
|
if (pm == NULL) {
|
2006-09-02 22:50:32 +02:00
|
|
|
pm = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(monitor_t));
|
|
|
|
if (pm == NULL) goto cleanup;
|
2006-09-02 22:55:25 +02:00
|
|
|
list_add_tail(&monitor_handles, &pm->entry);
|
|
|
|
}
|
|
|
|
pm->refcount++;
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
if (pm->name == NULL) {
|
|
|
|
/* Load the monitor */
|
|
|
|
LPMONITOREX pmonitorEx;
|
|
|
|
DWORD len;
|
|
|
|
|
2007-01-11 13:05:16 +01:00
|
|
|
if (name) {
|
|
|
|
len = lstrlenW(MonitorsW) + lstrlenW(name) + 2;
|
|
|
|
regroot = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
}
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
if (regroot) {
|
|
|
|
lstrcpyW(regroot, MonitorsW);
|
|
|
|
lstrcatW(regroot, name);
|
|
|
|
/* Get the Driver from the Registry */
|
2006-11-04 00:26:20 +01:00
|
|
|
if (driver == NULL) {
|
|
|
|
HKEY hroot;
|
|
|
|
DWORD namesize;
|
|
|
|
if (RegOpenKeyW(HKEY_LOCAL_MACHINE, regroot, &hroot) == ERROR_SUCCESS) {
|
|
|
|
if (RegQueryValueExW(hroot, DriverW, NULL, NULL, NULL,
|
|
|
|
&namesize) == ERROR_SUCCESS) {
|
|
|
|
driver = HeapAlloc(GetProcessHeap(), 0, namesize);
|
|
|
|
RegQueryValueExW(hroot, DriverW, NULL, NULL, (LPBYTE) driver, &namesize) ;
|
|
|
|
}
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
}
|
|
|
|
}
|
2006-09-02 22:50:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pm->name = strdupW(name);
|
|
|
|
pm->dllname = strdupW(driver);
|
|
|
|
|
2007-01-11 13:05:16 +01:00
|
|
|
if ((name && (!regroot || !pm->name)) || !pm->dllname) {
|
2006-09-02 22:50:32 +02:00
|
|
|
monitor_unload(pm);
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
pm = NULL;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
pm->hdll = LoadLibraryW(driver);
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p: LoadLibrary(%s) => %d\n", pm->hdll, debugstr_w(driver), GetLastError());
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
if (pm->hdll == NULL) {
|
|
|
|
monitor_unload(pm);
|
|
|
|
SetLastError(ERROR_MOD_NOT_FOUND);
|
|
|
|
pm = NULL;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
pInitializePrintMonitor2 = (void *)GetProcAddress(pm->hdll, "InitializePrintMonitor2");
|
|
|
|
pInitializePrintMonitorUI = (void *)GetProcAddress(pm->hdll, "InitializePrintMonitorUI");
|
|
|
|
pInitializePrintMonitor = (void *)GetProcAddress(pm->hdll, "InitializePrintMonitor");
|
|
|
|
pInitializeMonitorEx = (void *)GetProcAddress(pm->hdll, "InitializeMonitorEx");
|
|
|
|
pInitializeMonitor = (void *)GetProcAddress(pm->hdll, "InitializeMonitor");
|
|
|
|
|
|
|
|
|
|
|
|
TRACE("%p: %s,pInitializePrintMonitor2\n", pInitializePrintMonitor2, debugstr_w(driver));
|
|
|
|
TRACE("%p: %s,pInitializePrintMonitorUI\n", pInitializePrintMonitorUI, debugstr_w(driver));
|
|
|
|
TRACE("%p: %s,pInitializePrintMonitor\n", pInitializePrintMonitor, debugstr_w(driver));
|
|
|
|
TRACE("%p: %s,pInitializeMonitorEx\n", pInitializeMonitorEx, debugstr_w(driver));
|
|
|
|
TRACE("%p: %s,pInitializeMonitor\n", pInitializeMonitor, debugstr_w(driver));
|
|
|
|
|
|
|
|
if (pInitializePrintMonitorUI != NULL) {
|
|
|
|
pm->monitorUI = pInitializePrintMonitorUI();
|
|
|
|
TRACE("%p: MONITORUI from %s,InitializePrintMonitorUI()\n", pm->monitorUI, debugstr_w(driver));
|
|
|
|
if (pm->monitorUI) {
|
2006-10-20 12:16:45 +02:00
|
|
|
TRACE( "0x%08x: dwMonitorSize (%d)\n",
|
|
|
|
pm->monitorUI->dwMonitorUISize, pm->monitorUI->dwMonitorUISize );
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-11 13:05:16 +01:00
|
|
|
if (pInitializePrintMonitor && regroot) {
|
2006-09-02 22:50:32 +02:00
|
|
|
pmonitorEx = pInitializePrintMonitor(regroot);
|
2007-01-11 13:05:16 +01:00
|
|
|
TRACE( "%p: LPMONITOREX from %s,InitializePrintMonitor(%s)\n",
|
|
|
|
pmonitorEx, debugstr_w(driver), debugstr_w(regroot));
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
if (pmonitorEx) {
|
|
|
|
pm->dwMonitorSize = pmonitorEx->dwMonitorSize;
|
|
|
|
pm->monitor = &(pmonitorEx->Monitor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pm->monitor) {
|
2006-10-20 12:16:45 +02:00
|
|
|
TRACE( "0x%08x: dwMonitorSize (%d)\n", pm->dwMonitorSize, pm->dwMonitorSize );
|
2006-09-02 22:50:32 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-11 13:05:16 +01:00
|
|
|
if (!pm->monitor && regroot) {
|
2006-09-02 22:50:32 +02:00
|
|
|
if (pInitializePrintMonitor2 != NULL) {
|
|
|
|
FIXME("%s,InitializePrintMonitor2 not implemented\n", debugstr_w(driver));
|
|
|
|
}
|
|
|
|
if (pInitializeMonitorEx != NULL) {
|
|
|
|
FIXME("%s,InitializeMonitorEx not implemented\n", debugstr_w(driver));
|
|
|
|
}
|
|
|
|
if (pInitializeMonitor != NULL) {
|
|
|
|
FIXME("%s,InitializeMonitor not implemented\n", debugstr_w(driver));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pm->monitor && !pm->monitorUI) {
|
|
|
|
monitor_unload(pm);
|
|
|
|
SetLastError(ERROR_PROC_NOT_FOUND);
|
|
|
|
pm = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cleanup:
|
2006-11-28 20:04:08 +01:00
|
|
|
if ((pm_localport == NULL) && (pm != NULL) && (lstrcmpW(pm->name, LocalPortW) == 0)) {
|
|
|
|
pm->refcount++;
|
|
|
|
pm_localport = pm;
|
|
|
|
}
|
2006-09-02 22:55:25 +02:00
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
2006-09-02 22:50:32 +02:00
|
|
|
if (driver != dllname) HeapFree(GetProcessHeap(), 0, driver);
|
|
|
|
HeapFree(GetProcessHeap(), 0, regroot);
|
|
|
|
TRACE("=> %p\n", pm);
|
|
|
|
return pm;
|
|
|
|
}
|
|
|
|
|
2006-11-04 00:27:16 +01:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_loadall [internal]
|
|
|
|
*
|
|
|
|
* Load all registered monitors
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static DWORD monitor_loadall(void)
|
|
|
|
{
|
|
|
|
monitor_t * pm;
|
|
|
|
DWORD registered = 0;
|
|
|
|
DWORD loaded = 0;
|
|
|
|
HKEY hmonitors;
|
|
|
|
WCHAR buffer[MAX_PATH];
|
|
|
|
DWORD id = 0;
|
|
|
|
|
|
|
|
if (RegOpenKeyW(HKEY_LOCAL_MACHINE, MonitorsW, &hmonitors) == ERROR_SUCCESS) {
|
|
|
|
RegQueryInfoKeyW(hmonitors, NULL, NULL, NULL, ®istered, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
TRACE("%d monitors registered\n", registered);
|
|
|
|
|
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
while (id < registered) {
|
|
|
|
buffer[0] = '\0';
|
|
|
|
RegEnumKeyW(hmonitors, id, buffer, MAX_PATH);
|
|
|
|
pm = monitor_load(buffer, NULL);
|
|
|
|
if (pm) loaded++;
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
|
|
|
RegCloseKey(hmonitors);
|
|
|
|
}
|
|
|
|
TRACE("%d monitors loaded\n", loaded);
|
|
|
|
return loaded;
|
|
|
|
}
|
|
|
|
|
2007-01-11 13:10:37 +01:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_loadui [internal]
|
|
|
|
*
|
|
|
|
* load the userinterface-dll for a given portmonitor
|
|
|
|
*
|
|
|
|
* On failure, NULL is returned
|
|
|
|
*/
|
|
|
|
|
|
|
|
static monitor_t * monitor_loadui(monitor_t * pm)
|
|
|
|
{
|
|
|
|
monitor_t * pui = NULL;
|
|
|
|
LPWSTR buffer[MAX_PATH];
|
|
|
|
HANDLE hXcv;
|
|
|
|
DWORD len;
|
|
|
|
DWORD res;
|
|
|
|
|
|
|
|
if (pm == NULL) return NULL;
|
|
|
|
TRACE("(%p) => dllname: %s\n", pm, debugstr_w(pm->dllname));
|
|
|
|
|
|
|
|
/* Try the Portmonitor first; works for many monitors */
|
|
|
|
if (pm->monitorUI) {
|
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
pm->refcount++;
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
|
|
|
return pm;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* query the userinterface-dllname from the Portmonitor */
|
|
|
|
if ((pm->monitor) && (pm->monitor->pfnXcvDataPort)) {
|
|
|
|
/* building (",XcvMonitor %s",pm->name) not needed yet */
|
|
|
|
res = pm->monitor->pfnXcvOpenPort(emptyStringW, SERVER_ACCESS_ADMINISTER, &hXcv);
|
|
|
|
TRACE("got %u with %p\n", res, hXcv);
|
|
|
|
if (res) {
|
|
|
|
res = pm->monitor->pfnXcvDataPort(hXcv, MonitorUIW, NULL, 0, (BYTE *) buffer, sizeof(buffer), &len);
|
|
|
|
TRACE("got %u with %s\n", res, debugstr_w((LPWSTR) buffer));
|
|
|
|
if (res == ERROR_SUCCESS) pui = monitor_load(NULL, (LPWSTR) buffer);
|
|
|
|
pm->monitor->pfnXcvClosePort(hXcv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pui;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-09 00:04:08 +01:00
|
|
|
/******************************************************************
|
|
|
|
* monitor_load_by_port [internal]
|
|
|
|
*
|
|
|
|
* load a printmonitor for a given port
|
|
|
|
*
|
|
|
|
* On failure, NULL is returned
|
|
|
|
*/
|
|
|
|
|
2007-01-05 01:09:13 +01:00
|
|
|
static monitor_t * monitor_load_by_port(LPCWSTR portname)
|
2006-11-09 00:04:08 +01:00
|
|
|
{
|
|
|
|
HKEY hroot;
|
|
|
|
HKEY hport;
|
|
|
|
LPWSTR buffer;
|
|
|
|
monitor_t * pm = NULL;
|
|
|
|
DWORD registered = 0;
|
|
|
|
DWORD id = 0;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
TRACE("(%s)\n", debugstr_w(portname));
|
|
|
|
|
|
|
|
/* Try the Local Monitor first */
|
|
|
|
if (RegOpenKeyW(HKEY_LOCAL_MACHINE, WinNT_CV_PortsW, &hroot) == ERROR_SUCCESS) {
|
|
|
|
if (RegQueryValueExW(hroot, portname, NULL, NULL, NULL, &len) == ERROR_SUCCESS) {
|
|
|
|
/* found the portname */
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
return monitor_load(LocalPortW, NULL);
|
|
|
|
}
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
}
|
|
|
|
|
|
|
|
len = MAX_PATH + lstrlenW(bs_Ports_bsW) + lstrlenW(portname) + 1;
|
|
|
|
buffer = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
if (buffer == NULL) return NULL;
|
|
|
|
|
|
|
|
if (RegOpenKeyW(HKEY_LOCAL_MACHINE, MonitorsW, &hroot) == ERROR_SUCCESS) {
|
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
RegQueryInfoKeyW(hroot, NULL, NULL, NULL, ®istered, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
while ((pm == NULL) && (id < registered)) {
|
|
|
|
buffer[0] = '\0';
|
|
|
|
RegEnumKeyW(hroot, id, buffer, MAX_PATH);
|
|
|
|
TRACE("testing %s\n", debugstr_w(buffer));
|
|
|
|
len = lstrlenW(buffer);
|
|
|
|
lstrcatW(buffer, bs_Ports_bsW);
|
|
|
|
lstrcatW(buffer, portname);
|
|
|
|
if (RegOpenKeyW(hroot, buffer, &hport) == ERROR_SUCCESS) {
|
|
|
|
RegCloseKey(hport);
|
|
|
|
buffer[len] = '\0'; /* use only the Monitor-Name */
|
|
|
|
pm = monitor_load(buffer, NULL);
|
|
|
|
}
|
|
|
|
id++;
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
return pm;
|
|
|
|
}
|
|
|
|
|
2006-11-04 00:27:16 +01:00
|
|
|
/******************************************************************
|
|
|
|
* enumerate the local Ports from all loaded monitors (internal)
|
|
|
|
*
|
|
|
|
* returns the needed size (in bytes) for pPorts
|
|
|
|
* and *lpreturned is set to number of entries returned in pPorts
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static DWORD get_ports_from_all_monitors(DWORD level, LPBYTE pPorts, DWORD cbBuf, LPDWORD lpreturned)
|
|
|
|
{
|
|
|
|
monitor_t * pm;
|
|
|
|
LPWSTR ptr;
|
|
|
|
LPPORT_INFO_2W cache;
|
|
|
|
LPPORT_INFO_2W out;
|
2007-03-29 17:38:16 +02:00
|
|
|
LPBYTE pi_buffer = NULL;
|
|
|
|
DWORD pi_allocated = 0;
|
|
|
|
DWORD pi_needed;
|
|
|
|
DWORD pi_index;
|
|
|
|
DWORD pi_returned;
|
2006-11-04 00:27:16 +01:00
|
|
|
DWORD res;
|
|
|
|
DWORD outindex = 0;
|
2007-03-29 17:38:16 +02:00
|
|
|
DWORD needed;
|
2006-11-04 00:27:16 +01:00
|
|
|
DWORD numentries;
|
|
|
|
DWORD entrysize;
|
|
|
|
|
|
|
|
|
|
|
|
TRACE("(%d, %p, %d, %p)\n", level, pPorts, cbBuf, lpreturned);
|
|
|
|
entrysize = (level == 1) ? sizeof(PORT_INFO_1W) : sizeof(PORT_INFO_2W);
|
|
|
|
|
|
|
|
numentries = *lpreturned; /* this is 0, when we scan the registry */
|
|
|
|
needed = entrysize * numentries;
|
|
|
|
ptr = (LPWSTR) &pPorts[needed];
|
|
|
|
|
|
|
|
numentries = 0;
|
|
|
|
needed = 0;
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(pm, &monitor_handles, monitor_t, entry)
|
|
|
|
{
|
|
|
|
if ((pm->monitor) && (pm->monitor->pfnEnumPorts)) {
|
2007-03-29 17:38:16 +02:00
|
|
|
pi_needed = 0;
|
|
|
|
pi_returned = 0;
|
|
|
|
res = pm->monitor->pfnEnumPorts(NULL, level, pi_buffer, pi_allocated, &pi_needed, &pi_returned);
|
|
|
|
if (!res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER)) {
|
|
|
|
/* Do not use HeapReAlloc (we do not need the old data in the buffer) */
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi_buffer);
|
|
|
|
pi_buffer = HeapAlloc(GetProcessHeap(), 0, pi_needed);
|
|
|
|
pi_allocated = (pi_buffer) ? pi_needed : 0;
|
|
|
|
res = pm->monitor->pfnEnumPorts(NULL, level, pi_buffer, pi_allocated, &pi_needed, &pi_returned);
|
2006-11-04 00:27:16 +01:00
|
|
|
}
|
2007-03-29 17:38:16 +02:00
|
|
|
TRACE( "(%s) got %d with %d (need %d byte for %d entries)\n",
|
|
|
|
debugstr_w(pm->name), res, GetLastError(), pi_needed, pi_returned);
|
|
|
|
|
|
|
|
numentries += pi_returned;
|
|
|
|
needed += pi_needed;
|
|
|
|
|
|
|
|
/* fill the output-buffer (pPorts), if we have one */
|
|
|
|
if (pPorts && (cbBuf >= needed ) && pi_buffer) {
|
|
|
|
pi_index = 0;
|
|
|
|
while (pi_returned > pi_index) {
|
|
|
|
cache = (LPPORT_INFO_2W) &pi_buffer[pi_index * entrysize];
|
2006-11-04 00:27:16 +01:00
|
|
|
out = (LPPORT_INFO_2W) &pPorts[outindex * entrysize];
|
|
|
|
out->pPortName = ptr;
|
|
|
|
lstrcpyW(ptr, cache->pPortName);
|
|
|
|
ptr += (lstrlenW(ptr)+1);
|
|
|
|
if (level > 1) {
|
|
|
|
out->pMonitorName = ptr;
|
|
|
|
lstrcpyW(ptr, cache->pMonitorName);
|
|
|
|
ptr += (lstrlenW(ptr)+1);
|
|
|
|
|
|
|
|
out->pDescription = ptr;
|
|
|
|
lstrcpyW(ptr, cache->pDescription);
|
|
|
|
ptr += (lstrlenW(ptr)+1);
|
|
|
|
out->fPortType = cache->fPortType;
|
|
|
|
out->Reserved = cache->Reserved;
|
|
|
|
}
|
2007-03-29 17:38:16 +02:00
|
|
|
pi_index++;
|
2006-11-04 00:27:16 +01:00
|
|
|
outindex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-03-29 17:38:16 +02:00
|
|
|
/* the temporary portinfo-buffer is no longer needed */
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi_buffer);
|
2006-11-04 00:27:16 +01:00
|
|
|
|
|
|
|
*lpreturned = numentries;
|
|
|
|
TRACE("need %d byte for %d entries\n", needed, numentries);
|
|
|
|
return needed;
|
|
|
|
}
|
|
|
|
|
2007-01-05 01:09:02 +01:00
|
|
|
/******************************************************************
|
|
|
|
* get_servername_from_name (internal)
|
|
|
|
*
|
|
|
|
* for an external server, a copy of the serverpart from the full name is returned
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static LPWSTR get_servername_from_name(LPCWSTR name)
|
|
|
|
{
|
|
|
|
LPWSTR server;
|
|
|
|
LPWSTR ptr;
|
|
|
|
WCHAR buffer[MAX_PATH];
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if (name == NULL) return NULL;
|
|
|
|
if ((name[0] != '\\') || (name[1] != '\\')) return NULL;
|
|
|
|
|
|
|
|
server = strdupW(&name[2]); /* skip over both backslash */
|
|
|
|
if (server == NULL) return NULL;
|
|
|
|
|
|
|
|
/* strip '\' and the printername */
|
|
|
|
ptr = strchrW(server, '\\');
|
|
|
|
if (ptr) ptr[0] = '\0';
|
|
|
|
|
|
|
|
TRACE("found %s\n", debugstr_w(server));
|
|
|
|
|
|
|
|
len = sizeof(buffer)/sizeof(buffer[0]);
|
|
|
|
if (GetComputerNameW(buffer, &len)) {
|
|
|
|
if (lstrcmpW(buffer, server) == 0) {
|
|
|
|
/* The requested Servername is our computername */
|
|
|
|
HeapFree(GetProcessHeap(), 0, server);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* get_basename_from_name (internal)
|
|
|
|
*
|
|
|
|
* skip over the serverpart from the full name
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static LPCWSTR get_basename_from_name(LPCWSTR name)
|
|
|
|
{
|
|
|
|
if (name == NULL) return NULL;
|
|
|
|
if ((name[0] == '\\') && (name[1] == '\\')) {
|
|
|
|
/* skip over the servername and search for the following '\' */
|
|
|
|
name = strchrW(&name[2], '\\');
|
|
|
|
if ((name) && (name[1])) {
|
2007-01-18 11:35:50 +01:00
|
|
|
/* found a separator ('\') followed by a name:
|
|
|
|
skip over the separator and return the rest */
|
2007-01-05 01:09:02 +01:00
|
|
|
name++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* no basename present (we found only a servername) */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/******************************************************************
|
2005-07-05 13:00:09 +02:00
|
|
|
* get_opened_printer_entry
|
1999-05-17 18:20:51 +02:00
|
|
|
* Get the first place empty in the opened printer table
|
2006-05-12 16:14:59 +02:00
|
|
|
*
|
|
|
|
* ToDo:
|
|
|
|
* - pDefault is ignored
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2006-05-12 16:14:59 +02:00
|
|
|
static HANDLE get_opened_printer_entry(LPCWSTR name, LPPRINTER_DEFAULTSW pDefault)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-09-29 15:34:34 +02:00
|
|
|
UINT_PTR handle = nb_printer_handles, i;
|
2005-10-24 17:03:02 +02:00
|
|
|
jobqueue_t *queue = NULL;
|
2006-05-12 16:14:59 +02:00
|
|
|
opened_printer_t *printer = NULL;
|
2007-01-05 01:09:02 +01:00
|
|
|
LPWSTR servername;
|
|
|
|
LPCWSTR printername;
|
|
|
|
HKEY hkeyPrinters;
|
|
|
|
HKEY hkeyPrinter;
|
2007-01-05 01:09:13 +01:00
|
|
|
DWORD len;
|
2007-01-05 01:09:02 +01:00
|
|
|
|
|
|
|
servername = get_servername_from_name(name);
|
|
|
|
if (servername) {
|
|
|
|
FIXME("server %s not supported\n", debugstr_w(servername));
|
|
|
|
HeapFree(GetProcessHeap(), 0, servername);
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_NAME);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
printername = get_basename_from_name(name);
|
|
|
|
if (name != printername) TRACE("converted %s to %s\n", debugstr_w(name), debugstr_w(printername));
|
|
|
|
|
|
|
|
/* an empty printername is invalid */
|
|
|
|
if (printername && (!printername[0])) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2005-07-19 21:12:13 +02:00
|
|
|
for (i = 0; i < nb_printer_handles; i++)
|
|
|
|
{
|
|
|
|
if (!printer_handles[i])
|
|
|
|
{
|
|
|
|
if(handle == nb_printer_handles)
|
|
|
|
handle = i;
|
|
|
|
}
|
2006-05-12 16:14:59 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!queue && (name) && !lstrcmpW(name, printer_handles[i]->name))
|
|
|
|
queue = printer_handles[i]->queue;
|
|
|
|
}
|
2005-07-19 21:12:13 +02:00
|
|
|
}
|
2003-10-15 23:01:05 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
if (handle >= nb_printer_handles)
|
|
|
|
{
|
|
|
|
opened_printer_t **new_array;
|
|
|
|
if (printer_handles)
|
|
|
|
new_array = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, printer_handles,
|
|
|
|
(nb_printer_handles + 16) * sizeof(*new_array) );
|
2005-07-06 17:44:15 +02:00
|
|
|
else
|
2005-07-05 13:00:09 +02:00
|
|
|
new_array = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
(nb_printer_handles + 16) * sizeof(*new_array) );
|
|
|
|
|
|
|
|
if (!new_array)
|
|
|
|
{
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
printer_handles = new_array;
|
|
|
|
nb_printer_handles += 16;
|
1999-08-15 18:34:22 +02:00
|
|
|
}
|
|
|
|
|
2006-05-12 16:14:59 +02:00
|
|
|
if (!(printer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*printer))))
|
1999-08-15 18:34:22 +02:00
|
|
|
{
|
2005-07-05 13:00:09 +02:00
|
|
|
handle = 0;
|
|
|
|
goto end;
|
1999-08-15 18:34:22 +02:00
|
|
|
}
|
2005-07-05 13:00:09 +02:00
|
|
|
|
2007-01-05 01:09:02 +01:00
|
|
|
|
|
|
|
/* clone the base name. This is NULL for the printserver */
|
|
|
|
printer->printername = strdupW(printername);
|
|
|
|
|
|
|
|
/* clone the full name */
|
|
|
|
printer->name = strdupW(name);
|
|
|
|
if (name && (!printer->name)) {
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (printername) {
|
2007-01-05 01:09:13 +01:00
|
|
|
len = sizeof(XcvMonitorW)/sizeof(WCHAR) - 1;
|
|
|
|
if (strncmpW(printername, XcvMonitorW, len) == 0) {
|
|
|
|
/* OpenPrinter(",XcvMonitor " detected */
|
|
|
|
TRACE(",XcvMonitor: %s\n", debugstr_w(&printername[len]));
|
|
|
|
printer->pm = monitor_load(&printername[len], NULL);
|
|
|
|
if (printer->pm == NULL) {
|
2007-04-30 10:37:58 +02:00
|
|
|
SetLastError(ERROR_UNKNOWN_PORT);
|
2007-01-05 01:09:13 +01:00
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len = sizeof(XcvPortW)/sizeof(WCHAR) - 1;
|
|
|
|
if (strncmpW( printername, XcvPortW, len) == 0) {
|
|
|
|
/* OpenPrinter(",XcvPort " detected */
|
|
|
|
TRACE(",XcvPort: %s\n", debugstr_w(&printername[len]));
|
|
|
|
printer->pm = monitor_load_by_port(&printername[len]);
|
|
|
|
if (printer->pm == NULL) {
|
2007-04-30 10:37:58 +02:00
|
|
|
SetLastError(ERROR_UNKNOWN_PORT);
|
2007-01-05 01:09:13 +01:00
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-01-05 01:09:02 +01:00
|
|
|
|
2007-01-05 01:09:13 +01:00
|
|
|
if (printer->pm) {
|
2007-01-05 01:09:46 +01:00
|
|
|
if ((printer->pm->monitor) && (printer->pm->monitor->pfnXcvOpenPort)) {
|
2007-04-30 10:41:02 +02:00
|
|
|
printer->pm->monitor->pfnXcvOpenPort(&printername[len],
|
|
|
|
pDefault ? pDefault->DesiredAccess : 0,
|
|
|
|
&printer->hXcv);
|
2007-01-05 01:09:46 +01:00
|
|
|
}
|
|
|
|
if (printer->hXcv == NULL) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
2007-01-05 01:09:02 +01:00
|
|
|
}
|
2007-01-05 01:09:13 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Does the Printer exist? */
|
|
|
|
if (RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) != ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (RegOpenKeyW(hkeyPrinters, printername, &hkeyPrinter) != ERROR_SUCCESS) {
|
2007-01-18 11:37:51 +01:00
|
|
|
WARN("Printer not found in Registry: %s\n", debugstr_w(printername));
|
2007-01-05 01:09:13 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_NAME);
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyPrinter);
|
2007-01-05 01:09:02 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
2006-05-12 16:14:59 +02:00
|
|
|
}
|
2007-01-05 01:09:02 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TRACE("using the local printserver\n");
|
2006-05-12 16:14:59 +02:00
|
|
|
}
|
|
|
|
|
2005-07-19 21:12:13 +02:00
|
|
|
if(queue)
|
|
|
|
printer->queue = queue;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printer->queue = HeapAlloc(GetProcessHeap(), 0, sizeof(*queue));
|
2006-05-12 16:14:59 +02:00
|
|
|
if (!printer->queue) {
|
|
|
|
handle = 0;
|
|
|
|
goto end;
|
|
|
|
}
|
2005-07-19 21:12:13 +02:00
|
|
|
list_init(&printer->queue->jobs);
|
|
|
|
printer->queue->ref = 0;
|
|
|
|
}
|
|
|
|
InterlockedIncrement(&printer->queue->ref);
|
2005-07-05 13:00:09 +02:00
|
|
|
|
2005-07-06 17:44:15 +02:00
|
|
|
printer_handles[handle] = printer;
|
2005-07-05 13:00:09 +02:00
|
|
|
handle++;
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
2006-05-12 16:14:59 +02:00
|
|
|
if (!handle && printer) {
|
2007-01-05 01:09:02 +01:00
|
|
|
/* Something failed: Free all resources */
|
2007-01-05 01:09:46 +01:00
|
|
|
if (printer->hXcv) printer->pm->monitor->pfnXcvClosePort(printer->hXcv);
|
2007-01-05 01:09:13 +01:00
|
|
|
monitor_unload(printer->pm);
|
2007-01-05 01:09:02 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, printer->printername);
|
2006-05-12 16:14:59 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, printer->name);
|
|
|
|
if (!queue) HeapFree(GetProcessHeap(), 0, printer->queue);
|
|
|
|
HeapFree(GetProcessHeap(), 0, printer);
|
|
|
|
}
|
2005-07-05 13:00:09 +02:00
|
|
|
|
|
|
|
return (HANDLE)handle;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2005-07-05 13:00:09 +02:00
|
|
|
* get_opened_printer
|
1999-05-17 18:20:51 +02:00
|
|
|
* Get the pointer to the opened printer referred by the handle
|
|
|
|
*/
|
2005-07-05 13:00:09 +02:00
|
|
|
static opened_printer_t *get_opened_printer(HANDLE hprn)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-09-29 15:34:34 +02:00
|
|
|
UINT_PTR idx = (UINT_PTR)hprn;
|
2005-07-05 13:00:09 +02:00
|
|
|
opened_printer_t *ret = NULL;
|
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
|
2007-11-04 17:57:54 +01:00
|
|
|
if ((idx > 0) && (idx <= nb_printer_handles)) {
|
|
|
|
ret = printer_handles[idx - 1];
|
|
|
|
}
|
2005-07-05 13:00:09 +02:00
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* get_opened_printer_name
|
|
|
|
* Get the pointer to the opened printer name referred by the handle
|
|
|
|
*/
|
|
|
|
static LPCWSTR get_opened_printer_name(HANDLE hprn)
|
|
|
|
{
|
|
|
|
opened_printer_t *printer = get_opened_printer(hprn);
|
|
|
|
if(!printer) return NULL;
|
|
|
|
return printer->name;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
2001-02-12 02:26:47 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINSPOOL_GetOpenedPrinterRegKey
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static DWORD WINSPOOL_GetOpenedPrinterRegKey(HANDLE hPrinter, HKEY *phkey)
|
|
|
|
{
|
2005-07-05 13:00:09 +02:00
|
|
|
LPCWSTR name = get_opened_printer_name(hPrinter);
|
2001-02-12 02:26:47 +01:00
|
|
|
DWORD ret;
|
|
|
|
HKEY hkeyPrinters;
|
|
|
|
|
2001-02-28 06:26:08 +01:00
|
|
|
if(!name) return ERROR_INVALID_HANDLE;
|
2001-02-12 02:26:47 +01:00
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if((ret = RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters)) !=
|
2001-02-12 02:26:47 +01:00
|
|
|
ERROR_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
2001-02-28 06:26:08 +01:00
|
|
|
if(RegOpenKeyW(hkeyPrinters, name, phkey) != ERROR_SUCCESS)
|
|
|
|
{
|
2001-02-12 02:26:47 +01:00
|
|
|
ERR("Can't find opened printer %s in registry\n",
|
2005-07-05 13:00:09 +02:00
|
|
|
debugstr_w(name));
|
|
|
|
RegCloseKey(hkeyPrinters);
|
2001-02-12 02:26:47 +01:00
|
|
|
return ERROR_INVALID_PRINTER_NAME; /* ? */
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-01-17 17:18:54 +01:00
|
|
|
void WINSPOOL_LoadSystemPrinters(void)
|
|
|
|
{
|
|
|
|
HKEY hkey, hkeyPrinters;
|
|
|
|
HANDLE hprn;
|
|
|
|
DWORD needed, num, i;
|
|
|
|
WCHAR PrinterName[256];
|
|
|
|
BOOL done = FALSE;
|
|
|
|
|
|
|
|
/* This ensures that all printer entries have a valid Name value. If causes
|
|
|
|
problems later if they don't. If one is found to be missed we create one
|
|
|
|
and set it equal to the name of the key */
|
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) == ERROR_SUCCESS) {
|
|
|
|
if(RegQueryInfoKeyA(hkeyPrinters, NULL, NULL, NULL, &num, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL) == ERROR_SUCCESS) {
|
|
|
|
for(i = 0; i < num; i++) {
|
2007-12-01 17:43:37 +01:00
|
|
|
if(RegEnumKeyW(hkeyPrinters, i, PrinterName, sizeof(PrinterName)/sizeof(PrinterName[0])) == ERROR_SUCCESS) {
|
2007-01-17 17:18:54 +01:00
|
|
|
if(RegOpenKeyW(hkeyPrinters, PrinterName, &hkey) == ERROR_SUCCESS) {
|
|
|
|
if(RegQueryValueExW(hkey, NameW, 0, 0, 0, &needed) == ERROR_FILE_NOT_FOUND) {
|
|
|
|
set_reg_szW(hkey, NameW, PrinterName);
|
|
|
|
}
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We want to avoid calling AddPrinter on printers as much as
|
|
|
|
possible, because on cups printers this will (eventually) lead
|
|
|
|
to a call to cupsGetPPD which takes forever, even with non-cups
|
|
|
|
printers AddPrinter takes a while. So we'll tag all printers that
|
|
|
|
were automatically added last time around, if they still exist
|
|
|
|
we'll leave them be otherwise we'll delete them. */
|
|
|
|
EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, NULL, 0, &needed, &num);
|
|
|
|
if(needed) {
|
|
|
|
PRINTER_INFO_5A* pi = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
if(EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, (LPBYTE)pi, needed, &needed, &num)) {
|
|
|
|
for(i = 0; i < num; i++) {
|
|
|
|
if(pi[i].pPortName == NULL || !strncmp(pi[i].pPortName,"CUPS:", 5) || !strncmp(pi[i].pPortName, "LPR:", 4)) {
|
|
|
|
if(OpenPrinterA(pi[i].pPrinterName, &hprn, NULL)) {
|
|
|
|
if(WINSPOOL_GetOpenedPrinterRegKey(hprn, &hkey) == ERROR_SUCCESS) {
|
|
|
|
DWORD dw = 1;
|
|
|
|
RegSetValueExW(hkey, May_Delete_Value, 0, REG_DWORD, (LPBYTE)&dw, sizeof(dw));
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
ClosePrinter(hprn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-02 17:30:44 +02:00
|
|
|
#ifdef SONAME_LIBCUPS
|
2007-01-17 17:18:54 +01:00
|
|
|
done = CUPS_LoadPrinters();
|
|
|
|
#endif
|
|
|
|
|
2007-01-30 22:27:11 +01:00
|
|
|
if(!done) /* If we have any CUPS based printers, skip looking for printcap printers */
|
|
|
|
PRINTCAP_LoadPrinters();
|
2007-01-17 17:18:54 +01:00
|
|
|
|
2007-09-27 18:57:51 +02:00
|
|
|
/* Now enumerate the list again and delete any printers that are still tagged */
|
2007-01-17 17:18:54 +01:00
|
|
|
EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, NULL, 0, &needed, &num);
|
|
|
|
if(needed) {
|
|
|
|
PRINTER_INFO_5A* pi = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
if(EnumPrintersA(PRINTER_ENUM_LOCAL, NULL, 5, (LPBYTE)pi, needed, &needed, &num)) {
|
|
|
|
for(i = 0; i < num; i++) {
|
|
|
|
if(pi[i].pPortName == NULL || !strncmp(pi[i].pPortName,"CUPS:", 5) || !strncmp(pi[i].pPortName, "LPR:", 4)) {
|
|
|
|
if(OpenPrinterA(pi[i].pPrinterName, &hprn, NULL)) {
|
|
|
|
BOOL delete_driver = FALSE;
|
|
|
|
if(WINSPOOL_GetOpenedPrinterRegKey(hprn, &hkey) == ERROR_SUCCESS) {
|
|
|
|
DWORD dw, type, size = sizeof(dw);
|
|
|
|
if(RegQueryValueExW(hkey, May_Delete_Value, NULL, &type, (LPBYTE)&dw, &size) == ERROR_SUCCESS) {
|
|
|
|
TRACE("Deleting old printer %s\n", pi[i].pPrinterName);
|
|
|
|
DeletePrinter(hprn);
|
|
|
|
delete_driver = TRUE;
|
|
|
|
}
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
ClosePrinter(hprn);
|
|
|
|
if(delete_driver)
|
|
|
|
DeletePrinterDriverExA(NULL, NULL, pi[i].pPrinterName, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-07-13 16:14:37 +02:00
|
|
|
/******************************************************************
|
|
|
|
* get_job
|
|
|
|
*
|
|
|
|
* Get the pointer to the specified job.
|
|
|
|
* Should hold the printer_handles_cs before calling.
|
|
|
|
*/
|
|
|
|
static job_t *get_job(HANDLE hprn, DWORD JobId)
|
|
|
|
{
|
|
|
|
opened_printer_t *printer = get_opened_printer(hprn);
|
|
|
|
job_t *job;
|
|
|
|
|
|
|
|
if(!printer) return NULL;
|
2005-07-19 21:12:13 +02:00
|
|
|
LIST_FOR_EACH_ENTRY(job, &printer->queue->jobs, job_t, entry)
|
2005-07-13 16:14:37 +02:00
|
|
|
{
|
|
|
|
if(job->job_id == JobId)
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/***********************************************************
|
|
|
|
* DEVMODEcpyAtoW
|
|
|
|
*/
|
|
|
|
static LPDEVMODEW DEVMODEcpyAtoW(DEVMODEW *dmW, const DEVMODEA *dmA)
|
|
|
|
{
|
|
|
|
BOOL Formname;
|
2004-11-30 22:38:57 +01:00
|
|
|
ptrdiff_t off_formname = (const char *)dmA->dmFormName - (const char *)dmA;
|
2000-05-26 01:02:46 +02:00
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
Formname = (dmA->dmSize > off_formname);
|
|
|
|
size = dmA->dmSize + CCHDEVICENAME + (Formname ? CCHFORMNAME : 0);
|
2005-08-19 12:04:03 +02:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, (LPCSTR)dmA->dmDeviceName, -1,
|
|
|
|
dmW->dmDeviceName, CCHDEVICENAME);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(!Formname) {
|
|
|
|
memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion,
|
|
|
|
dmA->dmSize - CCHDEVICENAME);
|
|
|
|
} else {
|
|
|
|
memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion,
|
|
|
|
off_formname - CCHDEVICENAME);
|
2005-08-19 12:04:03 +02:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, (LPCSTR)dmA->dmFormName, -1,
|
|
|
|
dmW->dmFormName, CCHFORMNAME);
|
2000-05-26 01:02:46 +02:00
|
|
|
memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA->dmSize -
|
|
|
|
(off_formname + CCHFORMNAME));
|
|
|
|
}
|
|
|
|
dmW->dmSize = size;
|
2004-11-30 22:38:57 +01:00
|
|
|
memcpy((char *)dmW + dmW->dmSize, (const char *)dmA + dmA->dmSize,
|
2000-05-26 01:02:46 +02:00
|
|
|
dmA->dmDriverExtra);
|
|
|
|
return dmW;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
* DEVMODEdupWtoA
|
|
|
|
* Creates an ascii copy of supplied devmode on heap
|
|
|
|
*/
|
|
|
|
static LPDEVMODEA DEVMODEdupWtoA(HANDLE heap, const DEVMODEW *dmW)
|
|
|
|
{
|
|
|
|
LPDEVMODEA dmA;
|
|
|
|
DWORD size;
|
|
|
|
BOOL Formname;
|
2004-11-30 22:38:57 +01:00
|
|
|
ptrdiff_t off_formname = (const char *)dmW->dmFormName - (const char *)dmW;
|
2000-05-26 01:02:46 +02:00
|
|
|
|
|
|
|
if(!dmW) return NULL;
|
|
|
|
Formname = (dmW->dmSize > off_formname);
|
|
|
|
size = dmW->dmSize - CCHDEVICENAME - (Formname ? CCHFORMNAME : 0);
|
|
|
|
dmA = HeapAlloc(heap, HEAP_ZERO_MEMORY, size + dmW->dmDriverExtra);
|
2005-08-19 12:04:03 +02:00
|
|
|
WideCharToMultiByte(CP_ACP, 0, dmW->dmDeviceName, -1,
|
|
|
|
(LPSTR)dmA->dmDeviceName, CCHDEVICENAME, NULL, NULL);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(!Formname) {
|
|
|
|
memcpy(&dmA->dmSpecVersion, &dmW->dmSpecVersion,
|
|
|
|
dmW->dmSize - CCHDEVICENAME * sizeof(WCHAR));
|
|
|
|
} else {
|
|
|
|
memcpy(&dmA->dmSpecVersion, &dmW->dmSpecVersion,
|
|
|
|
off_formname - CCHDEVICENAME * sizeof(WCHAR));
|
2005-08-19 12:04:03 +02:00
|
|
|
WideCharToMultiByte(CP_ACP, 0, dmW->dmFormName, -1,
|
|
|
|
(LPSTR)dmA->dmFormName, CCHFORMNAME, NULL, NULL);
|
2000-05-26 01:02:46 +02:00
|
|
|
memcpy(&dmA->dmLogPixels, &dmW->dmLogPixels, dmW->dmSize -
|
|
|
|
(off_formname + CCHFORMNAME * sizeof(WCHAR)));
|
|
|
|
}
|
|
|
|
dmA->dmSize = size;
|
2004-11-30 22:38:57 +01:00
|
|
|
memcpy((char *)dmA + dmA->dmSize, (const char *)dmW + dmW->dmSize,
|
2000-05-26 01:02:46 +02:00
|
|
|
dmW->dmDriverExtra);
|
|
|
|
return dmA;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
* PRINTER_INFO_2AtoW
|
|
|
|
* Creates a unicode copy of PRINTER_INFO_2A on heap
|
|
|
|
*/
|
|
|
|
static LPPRINTER_INFO_2W PRINTER_INFO_2AtoW(HANDLE heap, LPPRINTER_INFO_2A piA)
|
|
|
|
{
|
|
|
|
LPPRINTER_INFO_2W piW;
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING usBuffer;
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(!piA) return NULL;
|
|
|
|
piW = HeapAlloc(heap, 0, sizeof(*piW));
|
|
|
|
memcpy(piW, piA, sizeof(*piW)); /* copy everything first */
|
2003-01-24 00:07:38 +01:00
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
piW->pServerName = asciitounicode(&usBuffer,piA->pServerName);
|
|
|
|
piW->pPrinterName = asciitounicode(&usBuffer,piA->pPrinterName);
|
|
|
|
piW->pShareName = asciitounicode(&usBuffer,piA->pShareName);
|
|
|
|
piW->pPortName = asciitounicode(&usBuffer,piA->pPortName);
|
|
|
|
piW->pDriverName = asciitounicode(&usBuffer,piA->pDriverName);
|
|
|
|
piW->pComment = asciitounicode(&usBuffer,piA->pComment);
|
|
|
|
piW->pLocation = asciitounicode(&usBuffer,piA->pLocation);
|
2003-08-13 01:46:34 +02:00
|
|
|
piW->pDevMode = piA->pDevMode ? GdiConvertToDevmodeW(piA->pDevMode) : NULL;
|
2003-02-12 02:19:25 +01:00
|
|
|
piW->pSepFile = asciitounicode(&usBuffer,piA->pSepFile);
|
|
|
|
piW->pPrintProcessor = asciitounicode(&usBuffer,piA->pPrintProcessor);
|
|
|
|
piW->pDatatype = asciitounicode(&usBuffer,piA->pDatatype);
|
|
|
|
piW->pParameters = asciitounicode(&usBuffer,piA->pParameters);
|
2000-05-26 01:02:46 +02:00
|
|
|
return piW;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
* FREE_PRINTER_INFO_2W
|
|
|
|
* Free PRINTER_INFO_2W and all strings
|
|
|
|
*/
|
|
|
|
static void FREE_PRINTER_INFO_2W(HANDLE heap, LPPRINTER_INFO_2W piW)
|
|
|
|
{
|
|
|
|
if(!piW) return;
|
|
|
|
|
|
|
|
HeapFree(heap,0,piW->pServerName);
|
|
|
|
HeapFree(heap,0,piW->pPrinterName);
|
|
|
|
HeapFree(heap,0,piW->pShareName);
|
|
|
|
HeapFree(heap,0,piW->pPortName);
|
|
|
|
HeapFree(heap,0,piW->pDriverName);
|
|
|
|
HeapFree(heap,0,piW->pComment);
|
|
|
|
HeapFree(heap,0,piW->pLocation);
|
|
|
|
HeapFree(heap,0,piW->pDevMode);
|
|
|
|
HeapFree(heap,0,piW->pSepFile);
|
|
|
|
HeapFree(heap,0,piW->pPrintProcessor);
|
|
|
|
HeapFree(heap,0,piW->pDatatype);
|
|
|
|
HeapFree(heap,0,piW->pParameters);
|
|
|
|
HeapFree(heap,0,piW);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/******************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* DeviceCapabilities [WINSPOOL.@]
|
|
|
|
* DeviceCapabilitiesA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
|
|
|
*/
|
2000-07-16 17:44:22 +02:00
|
|
|
INT WINAPI DeviceCapabilitiesA(LPCSTR pDevice,LPCSTR pPort, WORD cap,
|
1999-05-17 18:20:51 +02:00
|
|
|
LPSTR pOutput, LPDEVMODEA lpdm)
|
|
|
|
{
|
1999-09-10 16:37:29 +02:00
|
|
|
INT ret;
|
2000-11-29 19:38:24 +01:00
|
|
|
|
|
|
|
if (!GDI_CallDeviceCapabilities16)
|
|
|
|
{
|
|
|
|
GDI_CallDeviceCapabilities16 = (void*)GetProcAddress( GetModuleHandleA("gdi32"),
|
|
|
|
(LPCSTR)104 );
|
|
|
|
if (!GDI_CallDeviceCapabilities16) return -1;
|
|
|
|
}
|
2000-07-16 17:44:22 +02:00
|
|
|
ret = GDI_CallDeviceCapabilities16(pDevice, pPort, cap, pOutput, lpdm);
|
1999-09-10 16:37:29 +02:00
|
|
|
|
|
|
|
/* If DC_PAPERSIZE map POINT16s to POINTs */
|
|
|
|
if(ret != -1 && cap == DC_PAPERSIZE && pOutput) {
|
|
|
|
POINT16 *tmp = HeapAlloc( GetProcessHeap(), 0, ret * sizeof(POINT16) );
|
2000-12-13 21:03:53 +01:00
|
|
|
POINT *pt = (POINT *)pOutput;
|
1999-09-10 16:37:29 +02:00
|
|
|
INT i;
|
|
|
|
memcpy(tmp, pOutput, ret * sizeof(POINT16));
|
2000-12-13 21:03:53 +01:00
|
|
|
for(i = 0; i < ret; i++, pt++)
|
|
|
|
{
|
|
|
|
pt->x = tmp[i].x;
|
|
|
|
pt->y = tmp[i].y;
|
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
HeapFree( GetProcessHeap(), 0, tmp );
|
|
|
|
}
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeviceCapabilitiesW [WINSPOOL.@]
|
2000-05-26 01:02:46 +02:00
|
|
|
*
|
|
|
|
* Call DeviceCapabilitiesA since we later call 16bit stuff anyway
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
INT WINAPI DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort,
|
|
|
|
WORD fwCapability, LPWSTR pOutput,
|
|
|
|
const DEVMODEW *pDevMode)
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
LPDEVMODEA dmA = DEVMODEdupWtoA(GetProcessHeap(), pDevMode);
|
2006-11-17 15:29:40 +01:00
|
|
|
LPSTR pDeviceA = strdupWtoA(pDevice);
|
|
|
|
LPSTR pPortA = strdupWtoA(pPort);
|
2000-05-26 01:02:46 +02:00
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if(pOutput && (fwCapability == DC_BINNAMES ||
|
|
|
|
fwCapability == DC_FILEDEPENDENCIES ||
|
|
|
|
fwCapability == DC_PAPERNAMES)) {
|
|
|
|
/* These need A -> W translation */
|
|
|
|
INT size = 0, i;
|
|
|
|
LPSTR pOutputA;
|
|
|
|
ret = DeviceCapabilitiesA(pDeviceA, pPortA, fwCapability, NULL,
|
|
|
|
dmA);
|
|
|
|
if(ret == -1)
|
|
|
|
return ret;
|
|
|
|
switch(fwCapability) {
|
|
|
|
case DC_BINNAMES:
|
|
|
|
size = 24;
|
|
|
|
break;
|
|
|
|
case DC_PAPERNAMES:
|
|
|
|
case DC_FILEDEPENDENCIES:
|
|
|
|
size = 64;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pOutputA = HeapAlloc(GetProcessHeap(), 0, size * ret);
|
|
|
|
ret = DeviceCapabilitiesA(pDeviceA, pPortA, fwCapability, pOutputA,
|
|
|
|
dmA);
|
|
|
|
for(i = 0; i < ret; i++)
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pOutputA + (i * size), -1,
|
|
|
|
pOutput + (i * size), size);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pOutputA);
|
|
|
|
} else {
|
|
|
|
ret = DeviceCapabilitiesA(pDeviceA, pPortA, fwCapability,
|
|
|
|
(LPSTR)pOutput, dmA);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(),0,pPortA);
|
|
|
|
HeapFree(GetProcessHeap(),0,pDeviceA);
|
|
|
|
HeapFree(GetProcessHeap(),0,dmA);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DocumentPropertiesA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
2003-08-12 22:42:18 +02:00
|
|
|
* FIXME: implement DocumentPropertiesA via DocumentPropertiesW, not vice versa
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI DocumentPropertiesA(HWND hWnd,HANDLE hPrinter,
|
|
|
|
LPSTR pDeviceName, LPDEVMODEA pDevModeOutput,
|
|
|
|
LPDEVMODEA pDevModeInput,DWORD fMode )
|
|
|
|
{
|
|
|
|
LPSTR lpName = pDeviceName;
|
2006-08-16 22:00:14 +02:00
|
|
|
static CHAR port[] = "LPT1:";
|
2000-05-26 01:02:46 +02:00
|
|
|
LONG ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p,%p,%s,%p,%p,%d)\n",
|
1999-05-17 18:20:51 +02:00
|
|
|
hWnd,hPrinter,pDeviceName,pDevModeOutput,pDevModeInput,fMode
|
|
|
|
);
|
|
|
|
|
|
|
|
if(!pDeviceName) {
|
2005-07-05 13:00:09 +02:00
|
|
|
LPCWSTR lpNameW = get_opened_printer_name(hPrinter);
|
2001-04-27 20:02:46 +02:00
|
|
|
if(!lpNameW) {
|
|
|
|
ERR("no name from hPrinter?\n");
|
2005-07-05 13:00:09 +02:00
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
2001-04-27 20:02:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2006-11-17 15:29:40 +01:00
|
|
|
lpName = strdupWtoA(lpNameW);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
2000-11-29 19:38:24 +01:00
|
|
|
if (!GDI_CallExtDeviceMode16)
|
|
|
|
{
|
|
|
|
GDI_CallExtDeviceMode16 = (void*)GetProcAddress( GetModuleHandleA("gdi32"),
|
|
|
|
(LPCSTR)102 );
|
2001-04-27 20:02:46 +02:00
|
|
|
if (!GDI_CallExtDeviceMode16) {
|
|
|
|
ERR("No CallExtDeviceMode16?\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-11-29 19:38:24 +01:00
|
|
|
}
|
2006-08-16 22:00:14 +02:00
|
|
|
ret = GDI_CallExtDeviceMode16(hWnd, pDevModeOutput, lpName, port,
|
2000-05-26 01:02:46 +02:00
|
|
|
pDevModeInput, NULL, fMode);
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(!pDeviceName)
|
|
|
|
HeapFree(GetProcessHeap(),0,lpName);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* DocumentPropertiesW (WINSPOOL.@)
|
2003-08-12 22:42:18 +02:00
|
|
|
*
|
|
|
|
* FIXME: implement DocumentPropertiesA via DocumentPropertiesW, not vice versa
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI DocumentPropertiesW(HWND hWnd, HANDLE hPrinter,
|
2000-05-26 01:02:46 +02:00
|
|
|
LPWSTR pDeviceName,
|
|
|
|
LPDEVMODEW pDevModeOutput,
|
|
|
|
LPDEVMODEW pDevModeInput, DWORD fMode)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
|
2006-11-17 15:29:40 +01:00
|
|
|
LPSTR pDeviceNameA = strdupWtoA(pDeviceName);
|
2000-05-26 01:02:46 +02:00
|
|
|
LPDEVMODEA pDevModeInputA = DEVMODEdupWtoA(GetProcessHeap(),pDevModeInput);
|
|
|
|
LPDEVMODEA pDevModeOutputA = NULL;
|
|
|
|
LONG ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p,%p,%s,%p,%p,%d)\n",
|
1999-05-17 18:20:51 +02:00
|
|
|
hWnd,hPrinter,debugstr_w(pDeviceName),pDevModeOutput,pDevModeInput,
|
|
|
|
fMode);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pDevModeOutput) {
|
|
|
|
ret = DocumentPropertiesA(hWnd, hPrinter, pDeviceNameA, NULL, NULL, 0);
|
|
|
|
if(ret < 0) return ret;
|
|
|
|
pDevModeOutputA = HeapAlloc(GetProcessHeap(), 0, ret);
|
|
|
|
}
|
|
|
|
ret = DocumentPropertiesA(hWnd, hPrinter, pDeviceNameA, pDevModeOutputA,
|
|
|
|
pDevModeInputA, fMode);
|
|
|
|
if(pDevModeOutput) {
|
|
|
|
DEVMODEcpyAtoW(pDevModeOutput, pDevModeOutputA);
|
|
|
|
HeapFree(GetProcessHeap(),0,pDevModeOutputA);
|
|
|
|
}
|
|
|
|
if(fMode == 0 && ret > 0)
|
|
|
|
ret += (CCHDEVICENAME + CCHFORMNAME);
|
|
|
|
HeapFree(GetProcessHeap(),0,pDevModeInputA);
|
2002-06-01 01:06:46 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,pDeviceNameA);
|
2000-05-26 01:02:46 +02:00
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* OpenPrinterA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
2005-12-12 12:10:13 +01:00
|
|
|
* See OpenPrinterW.
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI OpenPrinterA(LPSTR lpPrinterName,HANDLE *phPrinter,
|
2000-05-26 01:02:46 +02:00
|
|
|
LPPRINTER_DEFAULTSA pDefault)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING lpPrinterNameW;
|
|
|
|
UNICODE_STRING usBuffer;
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_DEFAULTSW DefaultW, *pDefaultW = NULL;
|
2003-02-12 02:19:25 +01:00
|
|
|
PWSTR pwstrPrinterNameW;
|
2000-05-26 01:02:46 +02:00
|
|
|
BOOL ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
pwstrPrinterNameW = asciitounicode(&lpPrinterNameW,lpPrinterName);
|
2003-01-24 00:07:38 +01:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pDefault) {
|
2003-02-12 02:19:25 +01:00
|
|
|
DefaultW.pDatatype = asciitounicode(&usBuffer,pDefault->pDatatype);
|
2003-08-13 01:46:34 +02:00
|
|
|
DefaultW.pDevMode = pDefault->pDevMode ? GdiConvertToDevmodeW(pDefault->pDevMode) : NULL;
|
2000-05-26 01:02:46 +02:00
|
|
|
DefaultW.DesiredAccess = pDefault->DesiredAccess;
|
|
|
|
pDefaultW = &DefaultW;
|
|
|
|
}
|
2003-02-12 02:19:25 +01:00
|
|
|
ret = OpenPrinterW(pwstrPrinterNameW, phPrinter, pDefaultW);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pDefault) {
|
2003-01-24 00:07:38 +01:00
|
|
|
RtlFreeUnicodeString(&usBuffer);
|
2000-05-26 01:02:46 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, DefaultW.pDevMode);
|
|
|
|
}
|
2003-01-24 00:07:38 +01:00
|
|
|
RtlFreeUnicodeString(&lpPrinterNameW);
|
2000-05-26 01:02:46 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* OpenPrinterW [WINSPOOL.@]
|
2000-05-26 01:02:46 +02:00
|
|
|
*
|
2005-12-12 12:10:13 +01:00
|
|
|
* Open a Printer / Printserver or a Printer-Object
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* lpPrinterName [I] Name of Printserver, Printer, or Printer-Object
|
|
|
|
* phPrinter [O] The resulting Handle is stored here
|
|
|
|
* pDefault [I] PTR to Default Printer Settings or NULL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* lpPrinterName is one of:
|
|
|
|
*| Printserver (NT only): "Servername" or NULL for the local Printserver
|
|
|
|
*| Printer: "PrinterName"
|
|
|
|
*| Printer-Object: "PrinterName,Job xxx"
|
|
|
|
*| XcvMonitor: "Servername,XcvMonitor MonitorName"
|
|
|
|
*| XcvPort: "Servername,XcvPort PortName"
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
*| Printer-Object not supported
|
2006-05-12 16:14:59 +02:00
|
|
|
*| pDefaults is ignored
|
2005-12-12 12:10:13 +01:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
*/
|
2006-05-12 16:14:59 +02:00
|
|
|
BOOL WINAPI OpenPrinterW(LPWSTR lpPrinterName,HANDLE *phPrinter, LPPRINTER_DEFAULTSW pDefault)
|
2000-05-26 01:02:46 +02:00
|
|
|
{
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-05-12 16:14:59 +02:00
|
|
|
TRACE("(%s, %p, %p)\n", debugstr_w(lpPrinterName), phPrinter, pDefault);
|
|
|
|
if (pDefault) {
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("PRINTER_DEFAULTS ignored => %s,%p,0x%08x\n",
|
2006-05-12 16:14:59 +02:00
|
|
|
debugstr_w(pDefault->pDatatype), pDefault->pDevMode, pDefault->DesiredAccess);
|
2000-02-25 22:38:17 +01:00
|
|
|
}
|
|
|
|
|
2006-05-12 16:14:59 +02:00
|
|
|
if(!phPrinter) {
|
|
|
|
/* NT: FALSE with ERROR_INVALID_PARAMETER, 9x: TRUE */
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
1999-09-10 16:37:29 +02:00
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-05-12 16:14:59 +02:00
|
|
|
/* Get the unique handle of the printer or Printserver */
|
|
|
|
*phPrinter = get_opened_printer_entry(lpPrinterName, pDefault);
|
2007-01-18 11:37:51 +01:00
|
|
|
TRACE("returning %d with %u and %p\n", *phPrinter != NULL, GetLastError(), *phPrinter);
|
2006-05-12 16:14:59 +02:00
|
|
|
return (*phPrinter != 0);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddMonitorA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
2005-12-06 11:33:52 +01:00
|
|
|
* See AddMonitorW.
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
1999-09-04 16:30:33 +02:00
|
|
|
BOOL WINAPI AddMonitorA(LPSTR pName, DWORD Level, LPBYTE pMonitors)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2006-04-11 20:42:18 +02:00
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
INT len;
|
|
|
|
BOOL res;
|
|
|
|
LPMONITOR_INFO_2A mi2a;
|
|
|
|
MONITOR_INFO_2W mi2w;
|
|
|
|
|
|
|
|
mi2a = (LPMONITOR_INFO_2A) pMonitors;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %d, %p) : %s %s %s\n", debugstr_a(pName), Level, pMonitors,
|
2006-04-11 20:42:18 +02:00
|
|
|
mi2a ? debugstr_a(mi2a->pName) : NULL,
|
|
|
|
mi2a ? debugstr_a(mi2a->pEnvironment) : NULL,
|
|
|
|
mi2a ? debugstr_a(mi2a->pDLLName) : NULL);
|
|
|
|
|
|
|
|
if (Level != 2) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XP: unchanged, win9x: ERROR_INVALID_ENVIRONMENT */
|
|
|
|
if (mi2a == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&mi2w, 0, sizeof(MONITOR_INFO_2W));
|
|
|
|
if (mi2a->pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, mi2a->pName, -1, NULL, 0);
|
|
|
|
mi2w.pName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, mi2a->pName, -1, mi2w.pName, len);
|
|
|
|
}
|
|
|
|
if (mi2a->pEnvironment) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, mi2a->pEnvironment, -1, NULL, 0);
|
|
|
|
mi2w.pEnvironment = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, mi2a->pEnvironment, -1, mi2w.pEnvironment, len);
|
|
|
|
}
|
|
|
|
if (mi2a->pDLLName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, mi2a->pDLLName, -1, NULL, 0);
|
|
|
|
mi2w.pDLLName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, mi2a->pDLLName, -1, mi2w.pDLLName, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = AddMonitorW(nameW, Level, (LPBYTE) &mi2w);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, mi2w.pName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, mi2w.pEnvironment);
|
|
|
|
HeapFree(GetProcessHeap(), 0, mi2w.pDLLName);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
return (res);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AddMonitorW [WINSPOOL.@]
|
2005-12-06 11:33:52 +01:00
|
|
|
*
|
|
|
|
* Install a Printmonitor
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* Level [I] Structure-Level (Must be 2)
|
|
|
|
* pMonitors [I] PTR to MONITOR_INFO_2
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* All Files for the Monitor must already be copied to %winsysdir% ("%SystemRoot%\system32")
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI AddMonitorW(LPWSTR pName, DWORD Level, LPBYTE pMonitors)
|
|
|
|
{
|
2006-09-02 22:50:32 +02:00
|
|
|
monitor_t * pm = NULL;
|
2006-04-11 20:42:18 +02:00
|
|
|
LPMONITOR_INFO_2W mi2w;
|
|
|
|
HKEY hroot = NULL;
|
|
|
|
HKEY hentry = NULL;
|
|
|
|
DWORD disposition;
|
|
|
|
BOOL res = FALSE;
|
|
|
|
|
|
|
|
mi2w = (LPMONITOR_INFO_2W) pMonitors;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %d, %p) : %s %s %s\n", debugstr_w(pName), Level, pMonitors,
|
2006-04-11 20:42:18 +02:00
|
|
|
mi2w ? debugstr_w(mi2w->pName) : NULL,
|
|
|
|
mi2w ? debugstr_w(mi2w->pEnvironment) : NULL,
|
|
|
|
mi2w ? debugstr_w(mi2w->pDLLName) : NULL);
|
|
|
|
|
|
|
|
if (Level != 2) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XP: unchanged, win9x: ERROR_INVALID_ENVIRONMENT */
|
|
|
|
if (mi2w == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pName && (pName[0])) {
|
|
|
|
FIXME("for server %s not implemented\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!mi2w->pName || (! mi2w->pName[0])) {
|
2006-05-12 00:32:31 +02:00
|
|
|
WARN("pName not valid : %s\n", debugstr_w(mi2w->pName));
|
2006-04-11 20:42:18 +02:00
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!mi2w->pEnvironment || lstrcmpW(mi2w->pEnvironment, envname_x86W)) {
|
|
|
|
WARN("Environment %s requested (we support only %s)\n",
|
|
|
|
debugstr_w(mi2w->pEnvironment), debugstr_w(envname_x86W));
|
|
|
|
SetLastError(ERROR_INVALID_ENVIRONMENT);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mi2w->pDLLName || (! mi2w->pDLLName[0])) {
|
2006-05-12 00:32:31 +02:00
|
|
|
WARN("pDLLName not valid : %s\n", debugstr_w(mi2w->pDLLName));
|
2006-04-11 20:42:18 +02:00
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-09-02 22:50:32 +02:00
|
|
|
/* Load and initialize the monitor. SetLastError() is called on failure */
|
|
|
|
if ((pm = monitor_load(mi2w->pName, mi2w->pDLLName)) == NULL) {
|
2006-04-11 20:42:18 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
2006-09-02 22:50:32 +02:00
|
|
|
monitor_unload(pm);
|
2006-04-11 20:42:18 +02:00
|
|
|
|
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, MonitorsW, &hroot) != ERROR_SUCCESS) {
|
|
|
|
ERR("unable to create key %s\n", debugstr_w(MonitorsW));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-06-16 10:01:31 +02:00
|
|
|
if(RegCreateKeyExW( hroot, mi2w->pName, 0, NULL, REG_OPTION_NON_VOLATILE,
|
|
|
|
KEY_WRITE | KEY_QUERY_VALUE, NULL, &hentry,
|
|
|
|
&disposition) == ERROR_SUCCESS) {
|
|
|
|
|
|
|
|
/* Some installers set options for the port before calling AddMonitor.
|
|
|
|
We query the "Driver" entry to verify that the monitor is installed,
|
|
|
|
before we return an error.
|
|
|
|
When a user installs two print monitors at the same time with the
|
|
|
|
same name but with a different driver DLL and a task switch comes
|
|
|
|
between RegQueryValueExW and RegSetValueExW, a race condition
|
|
|
|
is possible but silently ignored. */
|
|
|
|
|
|
|
|
DWORD namesize = 0;
|
|
|
|
|
|
|
|
if ((disposition == REG_OPENED_EXISTING_KEY) &&
|
|
|
|
(RegQueryValueExW(hentry, DriverW, NULL, NULL, NULL,
|
|
|
|
&namesize) == ERROR_SUCCESS)) {
|
2006-04-11 20:42:18 +02:00
|
|
|
TRACE("monitor %s already exists\n", debugstr_w(mi2w->pName));
|
|
|
|
/* NT: ERROR_PRINT_MONITOR_ALREADY_INSTALLED (3006)
|
|
|
|
9x: ERROR_ALREADY_EXISTS (183) */
|
|
|
|
SetLastError(ERROR_PRINT_MONITOR_ALREADY_INSTALLED);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
INT len;
|
|
|
|
len = (lstrlenW(mi2w->pDLLName) +1) * sizeof(WCHAR);
|
|
|
|
res = (RegSetValueExW(hentry, DriverW, 0,
|
|
|
|
REG_SZ, (LPBYTE) mi2w->pDLLName, len) == ERROR_SUCCESS);
|
|
|
|
}
|
|
|
|
RegCloseKey(hentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
return (res);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeletePrinterDriverA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
|
|
|
*/
|
2006-11-07 12:57:39 +01:00
|
|
|
BOOL WINAPI DeletePrinterDriverA (LPSTR pName, LPSTR pEnvironment, LPSTR pDriverName)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2006-11-07 12:57:39 +01:00
|
|
|
return DeletePrinterDriverExA(pName, pEnvironment, pDriverName, 0, 0);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************
|
|
|
|
* DeletePrinterDriverW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
2006-11-07 12:57:39 +01:00
|
|
|
BOOL WINAPI DeletePrinterDriverW (LPWSTR pName, LPWSTR pEnvironment, LPWSTR pDriverName)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2006-11-07 12:57:39 +01:00
|
|
|
return DeletePrinterDriverExW(pName, pEnvironment, pDriverName, 0, 0);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeleteMonitorA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
2005-12-06 11:33:52 +01:00
|
|
|
* See DeleteMonitorW.
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2006-04-16 02:56:27 +02:00
|
|
|
BOOL WINAPI DeleteMonitorA (LPSTR pName, LPSTR pEnvironment, LPSTR pMonitorName)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2006-04-16 02:56:27 +02:00
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
LPWSTR EnvironmentW = NULL;
|
|
|
|
LPWSTR MonitorNameW = NULL;
|
|
|
|
BOOL res;
|
|
|
|
INT len;
|
|
|
|
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pEnvironment) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pEnvironment, -1, NULL, 0);
|
|
|
|
EnvironmentW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pEnvironment, -1, EnvironmentW, len);
|
|
|
|
}
|
|
|
|
if (pMonitorName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, NULL, 0);
|
|
|
|
MonitorNameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, MonitorNameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = DeleteMonitorW(nameW, EnvironmentW, MonitorNameW);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, MonitorNameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, EnvironmentW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
return (res);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************
|
|
|
|
* DeleteMonitorW [WINSPOOL.@]
|
|
|
|
*
|
2005-12-06 11:33:52 +01:00
|
|
|
* Delete a specific Printmonitor from a Printing-Environment
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* pEnvironment [I] Printing-Environment of the Monitor or NULL (Default)
|
|
|
|
* pMonitorName [I] Name of the Monitor, that should be deleted
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
2006-04-16 02:56:27 +02:00
|
|
|
* NOTES
|
|
|
|
* pEnvironment is ignored in Windows for the local Computer.
|
2005-12-06 11:33:52 +01:00
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
2006-04-16 02:56:27 +02:00
|
|
|
|
|
|
|
BOOL WINAPI DeleteMonitorW (LPWSTR pName, LPWSTR pEnvironment, LPWSTR pMonitorName)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2006-04-16 02:56:27 +02:00
|
|
|
HKEY hroot = NULL;
|
|
|
|
|
|
|
|
TRACE("(%s, %s, %s)\n",debugstr_w(pName),debugstr_w(pEnvironment),
|
|
|
|
debugstr_w(pMonitorName));
|
|
|
|
|
|
|
|
if (pName && (pName[0])) {
|
|
|
|
FIXME("for server %s not implemented\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pEnvironment is ignored in Windows for the local Computer */
|
|
|
|
|
|
|
|
if (!pMonitorName || !pMonitorName[0]) {
|
|
|
|
WARN("pMonitorName %s is invalid\n", debugstr_w(pMonitorName));
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, MonitorsW, &hroot) != ERROR_SUCCESS) {
|
|
|
|
ERR("unable to create key %s\n", debugstr_w(MonitorsW));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-06-05 18:47:17 +02:00
|
|
|
if(RegDeleteTreeW(hroot, pMonitorName) == ERROR_SUCCESS) {
|
2006-04-16 02:56:27 +02:00
|
|
|
TRACE("monitor %s deleted\n", debugstr_w(pMonitorName));
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-01-18 11:35:50 +01:00
|
|
|
WARN("monitor %s does not exist\n", debugstr_w(pMonitorName));
|
2006-04-16 02:56:27 +02:00
|
|
|
RegCloseKey(hroot);
|
|
|
|
|
|
|
|
/* NT: ERROR_UNKNOWN_PRINT_MONITOR (3000), 9x: ERROR_INVALID_PARAMETER (87) */
|
|
|
|
SetLastError(ERROR_UNKNOWN_PRINT_MONITOR);
|
|
|
|
return (FALSE);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeletePortA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
2005-12-06 10:57:01 +01:00
|
|
|
* See DeletePortW.
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2006-11-28 00:47:08 +01:00
|
|
|
BOOL WINAPI DeletePortA (LPSTR pName, HWND hWnd, LPSTR pPortName)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2006-11-28 00:47:08 +01:00
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
LPWSTR portW = NULL;
|
|
|
|
INT len;
|
|
|
|
DWORD res;
|
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n", debugstr_a(pName), hWnd, debugstr_a(pPortName));
|
|
|
|
|
|
|
|
/* convert servername to unicode */
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert portname to unicode */
|
|
|
|
if (pPortName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pPortName, -1, NULL, 0);
|
|
|
|
portW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pPortName, -1, portW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = DeletePortW(nameW, hWnd, portW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, portW);
|
|
|
|
return res;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************
|
|
|
|
* DeletePortW [WINSPOOL.@]
|
|
|
|
*
|
2005-12-06 10:57:01 +01:00
|
|
|
* Delete a specific Port
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* hWnd [I] Handle to parent Window for the Dialog-Box
|
|
|
|
* pPortName [I] Name of the Port, that should be deleted
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
2006-11-28 00:46:28 +01:00
|
|
|
BOOL WINAPI DeletePortW (LPWSTR pName, HWND hWnd, LPWSTR pPortName)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2006-11-28 00:46:28 +01:00
|
|
|
monitor_t * pm;
|
2007-01-15 05:37:20 +01:00
|
|
|
monitor_t * pui;
|
|
|
|
DWORD res;
|
2006-11-28 00:46:28 +01:00
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n", debugstr_w(pName), hWnd, debugstr_w(pPortName));
|
|
|
|
|
|
|
|
if (pName && pName[0]) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pPortName) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* an empty Portname is Invalid */
|
2007-01-15 05:37:20 +01:00
|
|
|
if (!pPortName[0]) {
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-11-28 00:46:28 +01:00
|
|
|
|
|
|
|
pm = monitor_load_by_port(pPortName);
|
2007-01-15 05:37:20 +01:00
|
|
|
if (pm && pm->monitor && pm->monitor->pfnDeletePort) {
|
|
|
|
TRACE("Using %s for %s (%p: %s)\n", debugstr_w(pm->name), debugstr_w(pPortName), pm, debugstr_w(pm->dllname));
|
|
|
|
res = pm->monitor->pfnDeletePort(pName, hWnd, pPortName);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pui = monitor_loadui(pm);
|
|
|
|
if (pui && pui->monitorUI && pui->monitorUI->pfnDeletePortUI) {
|
|
|
|
TRACE("use %s for %s (%p: %s)\n", debugstr_w(pui->name), debugstr_w(pPortName), pui, debugstr_w(pui->dllname));
|
|
|
|
res = pui->monitorUI->pfnDeletePortUI(pName, hWnd, pPortName);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
2006-11-28 00:46:28 +01:00
|
|
|
}
|
2007-01-15 05:37:20 +01:00
|
|
|
else
|
2006-11-28 00:46:28 +01:00
|
|
|
{
|
2007-01-15 05:37:20 +01:00
|
|
|
FIXME("not implemented for %s (%p: %s => %p: %s)\n", debugstr_w(pPortName),
|
|
|
|
pm, pm ? debugstr_w(pm->dllname) : NULL, pui, pui ? debugstr_w(pui->dllname) : NULL);
|
|
|
|
|
|
|
|
/* XP: ERROR_NOT_SUPPORTED, NT351,9x: ERROR_INVALID_PARAMETER */
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
res = FALSE;
|
2006-11-28 00:46:28 +01:00
|
|
|
}
|
2007-01-15 05:37:20 +01:00
|
|
|
monitor_unload(pui);
|
2006-11-28 00:46:28 +01:00
|
|
|
}
|
|
|
|
monitor_unload(pm);
|
|
|
|
|
2007-01-15 05:37:20 +01:00
|
|
|
TRACE("returning %d with %u\n", res, GetLastError());
|
|
|
|
return res;
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/******************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetPrinterW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2006-05-12 14:53:17 +02:00
|
|
|
BOOL WINAPI SetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, DWORD Command)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p, %d, %p, %d): stub\n", hPrinter, Level, pPrinter, Command);
|
2000-05-26 01:02:46 +02:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* WritePrinter [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2005-07-08 16:19:18 +02:00
|
|
|
BOOL WINAPI WritePrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf, LPDWORD pcWritten)
|
|
|
|
{
|
|
|
|
opened_printer_t *printer;
|
|
|
|
BOOL ret = FALSE;
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %p, %d, %p)\n", hPrinter, pBuf, cbBuf, pcWritten);
|
2005-07-08 16:19:18 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
printer = get_opened_printer(hPrinter);
|
|
|
|
if(!printer)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!printer->doc)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_SPL_NO_STARTDOC);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = WriteFile(printer->doc->hf, pBuf, cbBuf, pcWritten, NULL);
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddFormA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI AddFormA(HANDLE hPrinter, DWORD Level, LPBYTE pForm)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%d,%p): stub\n", hPrinter, Level, pForm);
|
1999-05-17 18:20:51 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddFormW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI AddFormW(HANDLE hPrinter, DWORD Level, LPBYTE pForm)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%d,%p): stub\n", hPrinter, Level, pForm);
|
1999-05-17 18:20:51 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddJobA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2005-07-06 17:44:15 +02:00
|
|
|
BOOL WINAPI AddJobA(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf, LPDWORD pcbNeeded)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-07-06 17:44:15 +02:00
|
|
|
BOOL ret;
|
|
|
|
BYTE buf[MAX_PATH * sizeof(WCHAR) + sizeof(ADDJOB_INFO_1W)];
|
|
|
|
DWORD needed;
|
|
|
|
|
|
|
|
if(Level != 1) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = AddJobW(hPrinter, Level, buf, sizeof(buf), &needed);
|
|
|
|
|
|
|
|
if(ret) {
|
|
|
|
ADDJOB_INFO_1W *addjobW = (ADDJOB_INFO_1W*)buf;
|
|
|
|
DWORD len = WideCharToMultiByte(CP_ACP, 0, addjobW->Path, -1, NULL, 0, NULL, NULL);
|
|
|
|
*pcbNeeded = len + sizeof(ADDJOB_INFO_1A);
|
|
|
|
if(*pcbNeeded > cbBuf) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
ret = FALSE;
|
|
|
|
} else {
|
|
|
|
ADDJOB_INFO_1A *addjobA = (ADDJOB_INFO_1A*)pData;
|
|
|
|
addjobA->JobId = addjobW->JobId;
|
|
|
|
addjobA->Path = (char *)(addjobA + 1);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, addjobW->Path, -1, addjobA->Path, len, NULL, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddJobW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2005-07-06 17:44:15 +02:00
|
|
|
BOOL WINAPI AddJobW(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf, LPDWORD pcbNeeded)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-07-06 17:44:15 +02:00
|
|
|
opened_printer_t *printer;
|
|
|
|
job_t *job;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
static const WCHAR spool_path[] = {'s','p','o','o','l','\\','P','R','I','N','T','E','R','S','\\',0};
|
|
|
|
static const WCHAR fmtW[] = {'%','s','%','0','5','d','.','S','P','L',0};
|
|
|
|
WCHAR path[MAX_PATH], filename[MAX_PATH];
|
|
|
|
DWORD len;
|
|
|
|
ADDJOB_INFO_1W *addjob;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p,%d,%p,%d,%p)\n", hPrinter, Level, pData, cbBuf, pcbNeeded);
|
2005-07-06 17:44:15 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
|
|
|
|
printer = get_opened_printer(hPrinter);
|
|
|
|
|
|
|
|
if(!printer) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Level != 1) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
job = HeapAlloc(GetProcessHeap(), 0, sizeof(*job));
|
|
|
|
if(!job)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
job->job_id = InterlockedIncrement(&next_job_id);
|
|
|
|
|
|
|
|
len = GetSystemDirectoryW(path, sizeof(path) / sizeof(WCHAR));
|
|
|
|
if(path[len - 1] != '\\')
|
|
|
|
path[len++] = '\\';
|
|
|
|
memcpy(path + len, spool_path, sizeof(spool_path));
|
|
|
|
sprintfW(filename, fmtW, path, job->job_id);
|
|
|
|
|
|
|
|
len = strlenW(filename);
|
|
|
|
job->filename = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
|
|
|
|
memcpy(job->filename, filename, (len + 1) * sizeof(WCHAR));
|
2005-07-15 11:55:23 +02:00
|
|
|
job->document_title = strdupW(default_doc_title);
|
2005-07-19 21:12:13 +02:00
|
|
|
list_add_tail(&printer->queue->jobs, &job->entry);
|
2005-07-06 17:44:15 +02:00
|
|
|
|
|
|
|
*pcbNeeded = (len + 1) * sizeof(WCHAR) + sizeof(*addjob);
|
|
|
|
if(*pcbNeeded <= cbBuf) {
|
|
|
|
addjob = (ADDJOB_INFO_1W*)pData;
|
|
|
|
addjob->JobId = job->job_id;
|
|
|
|
addjob->Path = (WCHAR *)(addjob + 1);
|
|
|
|
memcpy(addjob->Path, filename, (len + 1) * sizeof(WCHAR));
|
|
|
|
ret = TRUE;
|
|
|
|
} else
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
2003-04-27 22:35:08 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* GetPrintProcessorDirectoryA [WINSPOOL.@]
|
2006-05-27 00:30:58 +02:00
|
|
|
*
|
|
|
|
* Return the PATH for the Print-Processors
|
|
|
|
*
|
|
|
|
* See GetPrintProcessorDirectoryW.
|
|
|
|
*
|
|
|
|
*
|
2003-04-27 22:35:08 +02:00
|
|
|
*/
|
2003-11-27 01:59:36 +01:00
|
|
|
BOOL WINAPI GetPrintProcessorDirectoryA(LPSTR server, LPSTR env,
|
2003-04-27 22:35:08 +02:00
|
|
|
DWORD level, LPBYTE Info,
|
2006-06-09 13:06:41 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
2003-04-27 22:35:08 +02:00
|
|
|
{
|
2006-06-09 13:06:41 +02:00
|
|
|
LPWSTR serverW = NULL;
|
|
|
|
LPWSTR envW = NULL;
|
|
|
|
BOOL ret;
|
|
|
|
INT len;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %s, %d, %p, %d, %p)\n", debugstr_a(server),
|
2006-06-09 13:06:41 +02:00
|
|
|
debugstr_a(env), level, Info, cbBuf, pcbNeeded);
|
|
|
|
|
|
|
|
|
|
|
|
if (server) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, server, -1, NULL, 0);
|
|
|
|
serverW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, server, -1, serverW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (env) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, env, -1, NULL, 0);
|
|
|
|
envW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, env, -1, envW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NT requires the buffersize from GetPrintProcessorDirectoryW also
|
|
|
|
for GetPrintProcessorDirectoryA and WC2MB is done in-place.
|
|
|
|
*/
|
|
|
|
ret = GetPrintProcessorDirectoryW(serverW, envW, level, Info,
|
|
|
|
cbBuf, pcbNeeded);
|
|
|
|
|
|
|
|
if (ret) ret = WideCharToMultiByte(CP_ACP, 0, (LPWSTR)Info, -1, (LPSTR)Info,
|
|
|
|
cbBuf, NULL, NULL) > 0;
|
|
|
|
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE(" required: 0x%x/%d\n", pcbNeeded ? *pcbNeeded : 0, pcbNeeded ? *pcbNeeded : 0);
|
2006-06-09 13:06:41 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, envW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, serverW);
|
|
|
|
return ret;
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* GetPrintProcessorDirectoryW [WINSPOOL.@]
|
2006-05-27 00:30:58 +02:00
|
|
|
*
|
|
|
|
* Return the PATH for the Print-Processors
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* server [I] Servername (NT only) or NULL (local Computer)
|
|
|
|
* env [I] Printing-Environment (see below) or NULL (Default)
|
|
|
|
* level [I] Structure-Level (must be 1)
|
|
|
|
* Info [O] PTR to Buffer that receives the Result
|
|
|
|
* cbBuf [I] Size of Buffer at "Info"
|
2006-05-28 21:56:52 +02:00
|
|
|
* pcbNeeded [O] PTR to DWORD that receives the size in Bytes used /
|
2006-05-27 00:30:58 +02:00
|
|
|
* required for the Buffer at "Info"
|
|
|
|
*
|
|
|
|
* RETURNS
|
2006-05-28 21:56:52 +02:00
|
|
|
* Success: TRUE and in pcbNeeded the Bytes used in Info
|
|
|
|
* Failure: FALSE and in pcbNeeded the Bytes required for Info,
|
2006-05-27 00:30:58 +02:00
|
|
|
* if cbBuf is too small
|
|
|
|
*
|
2006-05-28 21:56:52 +02:00
|
|
|
* Native Values returned in Info on Success:
|
2006-05-27 00:30:58 +02:00
|
|
|
*| NT(Windows NT x86): "%winsysdir%\\spool\\PRTPROCS\\w32x86"
|
|
|
|
*| NT(Windows 4.0): "%winsysdir%\\spool\\PRTPROCS\\win40"
|
|
|
|
*| win9x(Windows 4.0): "%winsysdir%"
|
|
|
|
*
|
|
|
|
* "%winsysdir%" is the Value from GetSystemDirectoryW()
|
|
|
|
*
|
|
|
|
* BUGS
|
2006-05-28 21:56:52 +02:00
|
|
|
* Only NULL or "" is supported for server
|
2006-05-27 00:30:58 +02:00
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetPrintProcessorDirectoryW(LPWSTR server, LPWSTR env,
|
|
|
|
DWORD level, LPBYTE Info,
|
2006-05-28 21:56:52 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2006-05-28 21:56:52 +02:00
|
|
|
DWORD needed;
|
|
|
|
const printenv_t * env_t;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %s, %d, %p, %d, %p)\n", debugstr_w(server),
|
2006-05-28 21:56:52 +02:00
|
|
|
debugstr_w(env), level, Info, cbBuf, pcbNeeded);
|
|
|
|
|
|
|
|
if(server != NULL && server[0]) {
|
|
|
|
FIXME("server not supported: %s\n", debugstr_w(server));
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
env_t = validate_envW(env);
|
|
|
|
if(!env_t) return FALSE; /* environment invalid or unsupported */
|
|
|
|
|
|
|
|
if(level != 1) {
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN("(Level: %d) is ignored in win9x\n", level);
|
2006-05-28 21:56:52 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GetSystemDirectoryW returns number of WCHAR including the '\0' */
|
|
|
|
needed = GetSystemDirectoryW(NULL, 0);
|
|
|
|
/* add the Size for the Subdirectories */
|
|
|
|
needed += lstrlenW(spoolprtprocsW);
|
|
|
|
needed += lstrlenW(env_t->subdir);
|
|
|
|
needed *= sizeof(WCHAR); /* return-value is size in Bytes */
|
|
|
|
|
|
|
|
if(pcbNeeded) *pcbNeeded = needed;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("required: 0x%x/%d\n", needed, needed);
|
2006-05-28 21:56:52 +02:00
|
|
|
if (needed > cbBuf) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(pcbNeeded == NULL) {
|
|
|
|
/* NT: RPC_X_NULL_REF_POINTER, 9x: ignored */
|
|
|
|
WARN("(pcbNeeded == NULL) is ignored in win9x\n");
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(Info == NULL) {
|
|
|
|
/* NT: RPC_X_NULL_REF_POINTER, 9x: ERROR_INVALID_PARAMETER */
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetSystemDirectoryW((LPWSTR) Info, cbBuf/sizeof(WCHAR));
|
|
|
|
/* add the Subdirectories */
|
|
|
|
lstrcatW((LPWSTR) Info, spoolprtprocsW);
|
|
|
|
lstrcatW((LPWSTR) Info, env_t->subdir);
|
|
|
|
TRACE(" => %s\n", debugstr_w((LPWSTR) Info));
|
|
|
|
return TRUE;
|
2003-04-27 22:35:08 +02:00
|
|
|
}
|
|
|
|
|
2000-11-06 06:26:00 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_OpenDriverReg [internal]
|
|
|
|
*
|
|
|
|
* opens the registry for the printer drivers depending on the given input
|
|
|
|
* variable pEnvironment
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
* the opened hkey on success
|
2002-06-01 01:06:46 +02:00
|
|
|
* NULL on error
|
2000-11-06 06:26:00 +01:00
|
|
|
*/
|
2007-02-18 11:51:09 +01:00
|
|
|
static HKEY WINSPOOL_OpenDriverReg( LPCVOID pEnvironment, BOOL unicode)
|
2005-03-29 15:10:35 +02:00
|
|
|
{
|
2006-05-11 23:59:17 +02:00
|
|
|
HKEY retval = NULL;
|
|
|
|
LPWSTR buffer;
|
|
|
|
const printenv_t * env;
|
2000-11-06 06:26:00 +01:00
|
|
|
|
2006-05-11 23:59:17 +02:00
|
|
|
TRACE("(%s, %d)\n",
|
|
|
|
(unicode) ? debugstr_w(pEnvironment) : debugstr_a(pEnvironment), unicode);
|
2000-11-06 06:26:00 +01:00
|
|
|
|
2006-05-11 23:59:17 +02:00
|
|
|
if (!pEnvironment || unicode) {
|
|
|
|
/* pEnvironment was NULL or an Unicode-String: use it direct */
|
|
|
|
env = validate_envW(pEnvironment);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* pEnvironment was an ANSI-String: convert to unicode first */
|
|
|
|
LPWSTR buffer;
|
|
|
|
INT len = MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pEnvironment, -1, NULL, 0);
|
|
|
|
buffer = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
if (buffer) MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pEnvironment, -1, buffer, len);
|
|
|
|
env = validate_envW(buffer);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
}
|
|
|
|
if (!env) return NULL;
|
|
|
|
|
|
|
|
buffer = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
(strlenW(DriversW) + strlenW(env->envname) +
|
|
|
|
strlenW(env->versionregpath) + 1) * sizeof(WCHAR));
|
|
|
|
if(buffer) {
|
|
|
|
wsprintfW(buffer, DriversW, env->envname, env->versionregpath);
|
|
|
|
RegCreateKeyW(HKEY_LOCAL_MACHINE, buffer, &retval);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
}
|
2000-11-06 06:26:00 +01:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddPrinterW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
HANDLE WINAPI AddPrinterW(LPWSTR pName, DWORD Level, LPBYTE pPrinter)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_INFO_2W *pi = (PRINTER_INFO_2W *) pPrinter;
|
|
|
|
LPDEVMODEA dmA;
|
|
|
|
LPDEVMODEW dmW;
|
1999-05-22 20:53:56 +02:00
|
|
|
HANDLE retval;
|
|
|
|
HKEY hkeyPrinter, hkeyPrinters, hkeyDriver, hkeyDrivers;
|
2000-05-26 01:02:46 +02:00
|
|
|
LONG size;
|
2007-02-28 00:06:30 +01:00
|
|
|
static const WCHAR attributesW[] = {'A','t','t','r','i','b','u','t','e','s',0},
|
|
|
|
default_devmodeW[] = {'D','e','f','a','u','l','t',' ','D','e','v','M','o','d','e',0},
|
|
|
|
priorityW[] = {'P','r','i','o','r','i','t','y',0},
|
|
|
|
start_timeW[] = {'S','t','a','r','t','T','i','m','e',0},
|
|
|
|
statusW[] = {'S','t','a','t','u','s',0},
|
|
|
|
until_timeW[] = {'U','n','t','i','l','T','i','m','e',0};
|
1999-05-22 20:53:56 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s,%d,%p)\n", debugstr_w(pName), Level, pPrinter);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-05-22 20:53:56 +02:00
|
|
|
if(pName != NULL) {
|
2001-04-27 20:02:46 +02:00
|
|
|
ERR("pName = %s - unsupported\n", debugstr_w(pName));
|
1999-05-22 20:53:56 +02:00
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(Level != 2) {
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("Level = %d, unsupported!\n", Level);
|
1999-05-22 20:53:56 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(!pPrinter) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
1999-05-22 20:53:56 +02:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-09 19:10:41 +02:00
|
|
|
if(!RegOpenKeyW(hkeyPrinters, pi->pPrinterName, &hkeyPrinter)) {
|
2007-02-28 00:06:30 +01:00
|
|
|
if (!RegQueryValueW(hkeyPrinter, attributesW, NULL, NULL)) {
|
2001-05-09 19:10:41 +02:00
|
|
|
SetLastError(ERROR_PRINTER_ALREADY_EXISTS);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-22 20:53:56 +02:00
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
}
|
2000-11-06 06:26:00 +01:00
|
|
|
hkeyDrivers = WINSPOOL_OpenDriverReg( NULL, TRUE);
|
|
|
|
if(!hkeyDrivers) {
|
1999-05-22 20:53:56 +02:00
|
|
|
ERR("Can't create Drivers key\n");
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
if(RegOpenKeyW(hkeyDrivers, pi->pDriverName, &hkeyDriver) !=
|
1999-05-22 20:53:56 +02:00
|
|
|
ERROR_SUCCESS) {
|
2000-05-26 01:02:46 +02:00
|
|
|
WARN("Can't find driver %s\n", debugstr_w(pi->pDriverName));
|
1999-05-22 20:53:56 +02:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
SetLastError(ERROR_UNKNOWN_PRINTER_DRIVER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
RegCloseKey(hkeyDrivers);
|
2000-05-26 01:02:46 +02:00
|
|
|
|
|
|
|
if(lstrcmpiW(pi->pPrintProcessor, WinPrintW)) { /* FIXME */
|
2001-04-27 20:02:46 +02:00
|
|
|
FIXME("Can't find processor %s\n", debugstr_w(pi->pPrintProcessor));
|
1999-05-22 20:53:56 +02:00
|
|
|
SetLastError(ERROR_UNKNOWN_PRINTPROCESSOR);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
|
2001-05-09 19:10:41 +02:00
|
|
|
if(RegCreateKeyW(hkeyPrinters, pi->pPrinterName, &hkeyPrinter) !=
|
|
|
|
ERROR_SUCCESS) {
|
|
|
|
FIXME("Can't create printer %s\n", debugstr_w(pi->pPrinterName));
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_NAME);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-28 00:06:30 +01:00
|
|
|
RegSetValueExW(hkeyPrinter, attributesW, 0, REG_DWORD,
|
2001-05-09 19:10:41 +02:00
|
|
|
(LPBYTE)&pi->Attributes, sizeof(DWORD));
|
2001-10-28 22:16:38 +01:00
|
|
|
set_reg_szW(hkeyPrinter, DatatypeW, pi->pDatatype);
|
2001-05-09 19:10:41 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/* See if we can load the driver. We may need the devmode structure anyway
|
2001-05-09 19:10:41 +02:00
|
|
|
*
|
|
|
|
* FIXME:
|
|
|
|
* Note that DocumentPropertiesW will briefly try to open the printer we
|
|
|
|
* just create to find a DEVMODEA struct (it will use the WINEPS default
|
|
|
|
* one in case it is not there, so we are ok).
|
2000-05-26 01:02:46 +02:00
|
|
|
*/
|
2002-10-04 02:27:10 +02:00
|
|
|
size = DocumentPropertiesW(0, 0, pi->pPrinterName, NULL, NULL, 0);
|
2003-06-23 21:52:55 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(size < 0) {
|
2007-01-18 11:37:51 +01:00
|
|
|
FIXME("DocumentPropertiesW on printer %s fails\n", debugstr_w(pi->pPrinterName));
|
2001-04-27 20:02:46 +02:00
|
|
|
size = sizeof(DEVMODEW);
|
2000-05-26 01:02:46 +02:00
|
|
|
}
|
2001-05-09 19:10:41 +02:00
|
|
|
if(pi->pDevMode)
|
2000-05-26 01:02:46 +02:00
|
|
|
dmW = pi->pDevMode;
|
2007-04-25 00:57:55 +02:00
|
|
|
else
|
2003-06-23 21:52:55 +02:00
|
|
|
{
|
2007-04-25 00:57:55 +02:00
|
|
|
dmW = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
2006-06-15 12:36:00 +02:00
|
|
|
dmW->dmSize = size;
|
|
|
|
if (0>DocumentPropertiesW(0,0,pi->pPrinterName,dmW,NULL,DM_OUT_BUFFER))
|
2003-06-23 21:52:55 +02:00
|
|
|
{
|
2007-01-18 11:37:51 +01:00
|
|
|
WARN("DocumentPropertiesW on printer %s failed!\n", debugstr_w(pi->pPrinterName));
|
2003-06-23 21:52:55 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,dmW);
|
|
|
|
dmW=NULL;
|
2006-06-15 12:36:00 +02:00
|
|
|
}
|
2003-06-23 21:52:55 +02:00
|
|
|
else
|
|
|
|
{
|
2006-06-15 12:36:00 +02:00
|
|
|
/* set devmode to printer name */
|
|
|
|
lstrcpynW(dmW->dmDeviceName, pi->pPrinterName, CCHDEVICENAME);
|
2003-06-23 21:52:55 +02:00
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write DEVMODEA not DEVMODEW into reg. This is what win9x does
|
|
|
|
and we support these drivers. NT writes DEVMODEW so somehow
|
|
|
|
we'll need to distinguish between these when we support NT
|
|
|
|
drivers */
|
2003-06-23 21:52:55 +02:00
|
|
|
if (dmW)
|
|
|
|
{
|
|
|
|
dmA = DEVMODEdupWtoA(GetProcessHeap(), dmW);
|
2007-02-28 00:06:30 +01:00
|
|
|
RegSetValueExW(hkeyPrinter, default_devmodeW, 0, REG_BINARY,
|
2003-06-23 21:52:55 +02:00
|
|
|
(LPBYTE)dmA, dmA->dmSize + dmA->dmDriverExtra);
|
|
|
|
HeapFree(GetProcessHeap(), 0, dmA);
|
|
|
|
if(!pi->pDevMode)
|
|
|
|
HeapFree(GetProcessHeap(), 0, dmW);
|
|
|
|
}
|
2001-10-28 22:16:38 +01:00
|
|
|
set_reg_szW(hkeyPrinter, DescriptionW, pi->pComment);
|
|
|
|
set_reg_szW(hkeyPrinter, LocationW, pi->pLocation);
|
|
|
|
set_reg_szW(hkeyPrinter, NameW, pi->pPrinterName);
|
|
|
|
set_reg_szW(hkeyPrinter, ParametersW, pi->pParameters);
|
|
|
|
|
|
|
|
set_reg_szW(hkeyPrinter, PortW, pi->pPortName);
|
|
|
|
set_reg_szW(hkeyPrinter, Print_ProcessorW, pi->pPrintProcessor);
|
|
|
|
set_reg_szW(hkeyPrinter, Printer_DriverW, pi->pDriverName);
|
2007-02-28 00:06:30 +01:00
|
|
|
RegSetValueExW(hkeyPrinter, priorityW, 0, REG_DWORD,
|
|
|
|
(LPBYTE)&pi->Priority, sizeof(DWORD));
|
2001-10-28 22:16:38 +01:00
|
|
|
set_reg_szW(hkeyPrinter, Separator_FileW, pi->pSepFile);
|
|
|
|
set_reg_szW(hkeyPrinter, Share_NameW, pi->pShareName);
|
2007-02-28 00:06:30 +01:00
|
|
|
RegSetValueExW(hkeyPrinter, start_timeW, 0, REG_DWORD,
|
|
|
|
(LPBYTE)&pi->StartTime, sizeof(DWORD));
|
|
|
|
RegSetValueExW(hkeyPrinter, statusW, 0, REG_DWORD,
|
|
|
|
(LPBYTE)&pi->Status, sizeof(DWORD));
|
|
|
|
RegSetValueExW(hkeyPrinter, until_timeW, 0, REG_DWORD,
|
|
|
|
(LPBYTE)&pi->UntilTime, sizeof(DWORD));
|
1999-05-22 20:53:56 +02:00
|
|
|
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(!OpenPrinterW(pi->pPrinterName, &retval, NULL)) {
|
1999-05-22 20:53:56 +02:00
|
|
|
ERR("OpenPrinter failing\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return retval;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddPrinterA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
HANDLE WINAPI AddPrinterA(LPSTR pName, DWORD Level, LPBYTE pPrinter)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING pNameW;
|
2003-02-12 02:19:25 +01:00
|
|
|
PWSTR pwstrNameW;
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_INFO_2W *piW;
|
|
|
|
PRINTER_INFO_2A *piA = (PRINTER_INFO_2A*)pPrinter;
|
|
|
|
HANDLE ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s,%d,%p): stub\n", debugstr_a(pName), Level, pPrinter);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(Level != 2) {
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("Level = %d, unsupported!\n", Level);
|
2000-05-26 01:02:46 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-02-12 02:19:25 +01:00
|
|
|
pwstrNameW = asciitounicode(&pNameW,pName);
|
2000-05-26 01:02:46 +02:00
|
|
|
piW = PRINTER_INFO_2AtoW(GetProcessHeap(), piA);
|
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
ret = AddPrinterW(pwstrNameW, Level, (LPBYTE)piW);
|
2000-05-26 01:02:46 +02:00
|
|
|
|
|
|
|
FREE_PRINTER_INFO_2W(GetProcessHeap(), piW);
|
2003-01-24 00:07:38 +01:00
|
|
|
RtlFreeUnicodeString(&pNameW);
|
2000-05-26 01:02:46 +02:00
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* ClosePrinter [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ClosePrinter(HANDLE hPrinter)
|
|
|
|
{
|
2005-09-29 15:34:34 +02:00
|
|
|
UINT_PTR i = (UINT_PTR)hPrinter;
|
2005-07-05 13:00:09 +02:00
|
|
|
opened_printer_t *printer = NULL;
|
2005-07-06 17:44:15 +02:00
|
|
|
BOOL ret = FALSE;
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2007-01-15 05:38:22 +01:00
|
|
|
TRACE("(%p)\n", hPrinter);
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
|
|
|
|
if ((i > 0) && (i <= nb_printer_handles))
|
|
|
|
printer = printer_handles[i - 1];
|
|
|
|
|
2007-01-15 05:38:22 +01:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
if(printer)
|
|
|
|
{
|
2005-07-06 17:44:15 +02:00
|
|
|
struct list *cursor, *cursor2;
|
2005-07-08 16:19:18 +02:00
|
|
|
|
2007-01-15 05:38:22 +01:00
|
|
|
TRACE("%p: %s (hXcv: %p) for %s (doc: %p)\n", printer->pm,
|
|
|
|
debugstr_w(printer->pm ? printer->pm->dllname : NULL),
|
|
|
|
printer->hXcv, debugstr_w(printer->name), printer->doc );
|
|
|
|
|
2005-07-08 16:19:18 +02:00
|
|
|
if(printer->doc)
|
|
|
|
EndDocPrinter(hPrinter);
|
|
|
|
|
2005-07-19 21:12:13 +02:00
|
|
|
if(InterlockedDecrement(&printer->queue->ref) == 0)
|
2005-07-06 17:44:15 +02:00
|
|
|
{
|
2005-07-19 21:12:13 +02:00
|
|
|
LIST_FOR_EACH_SAFE(cursor, cursor2, &printer->queue->jobs)
|
|
|
|
{
|
|
|
|
job_t *job = LIST_ENTRY(cursor, job_t, entry);
|
|
|
|
ScheduleJob(hPrinter, job->job_id);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, printer->queue);
|
2005-07-06 17:44:15 +02:00
|
|
|
}
|
2007-01-05 01:09:46 +01:00
|
|
|
if (printer->hXcv) printer->pm->monitor->pfnXcvClosePort(printer->hXcv);
|
2007-01-05 01:09:13 +01:00
|
|
|
monitor_unload(printer->pm);
|
2007-01-05 01:09:02 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, printer->printername);
|
2005-07-05 13:00:09 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, printer->name);
|
|
|
|
HeapFree(GetProcessHeap(), 0, printer);
|
2005-07-06 17:44:15 +02:00
|
|
|
printer_handles[i - 1] = NULL;
|
|
|
|
ret = TRUE;
|
2005-07-05 13:00:09 +02:00
|
|
|
}
|
2005-07-06 17:44:15 +02:00
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeleteFormA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI DeleteFormA(HANDLE hPrinter, LPSTR pFormName)
|
|
|
|
{
|
2002-10-22 02:47:33 +02:00
|
|
|
FIXME("(%p,%s): stub\n", hPrinter, pFormName);
|
1999-05-17 18:20:51 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeleteFormW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI DeleteFormW(HANDLE hPrinter, LPWSTR pFormName)
|
|
|
|
{
|
2002-10-22 02:47:33 +02:00
|
|
|
FIXME("(%p,%s): stub\n", hPrinter, debugstr_w(pFormName));
|
1999-05-17 18:20:51 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2003-11-05 01:36:47 +01:00
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* DeletePrinter [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrinter(HANDLE hPrinter)
|
|
|
|
{
|
2005-07-05 13:00:09 +02:00
|
|
|
LPCWSTR lpNameW = get_opened_printer_name(hPrinter);
|
2005-03-31 12:06:46 +02:00
|
|
|
HKEY hkeyPrinters, hkey;
|
2000-05-26 01:02:46 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
if(!lpNameW) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegOpenKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) == ERROR_SUCCESS) {
|
2007-06-05 18:47:17 +02:00
|
|
|
RegDeleteTreeW(hkeyPrinters, lpNameW);
|
2003-11-05 01:36:47 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2003-11-05 01:36:47 +01:00
|
|
|
WriteProfileStringW(devicesW, lpNameW, NULL);
|
2005-03-31 12:06:46 +02:00
|
|
|
if(RegCreateKeyW(HKEY_CURRENT_USER, user_printers_reg_key, &hkey) == ERROR_SUCCESS) {
|
|
|
|
RegDeleteValueW(hkey, lpNameW);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
return TRUE;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetPrinterA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
|
|
|
|
DWORD Command)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%d,%p,%d): stub\n",hPrinter,Level,pPrinter,Command);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetJobA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetJobA(HANDLE hPrinter, DWORD JobId, DWORD Level,
|
2005-07-13 16:14:37 +02:00
|
|
|
LPBYTE pJob, DWORD Command)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-07-12 21:19:09 +02:00
|
|
|
BOOL ret;
|
|
|
|
LPBYTE JobW;
|
|
|
|
UNICODE_STRING usBuffer;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %d, %d, %p, %d)\n",hPrinter, JobId, Level, pJob, Command);
|
2005-07-12 21:19:09 +02:00
|
|
|
|
|
|
|
/* JobId, pPrinterName, pMachineName, pDriverName, Size, Submitted, Time and TotalPages
|
|
|
|
are all ignored by SetJob, so we don't bother copying them */
|
|
|
|
switch(Level)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
JobW = NULL;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
JOB_INFO_1W *info1W = HeapAlloc(GetProcessHeap(), 0, sizeof(*info1W));
|
|
|
|
JOB_INFO_1A *info1A = (JOB_INFO_1A*)pJob;
|
|
|
|
|
|
|
|
JobW = (LPBYTE)info1W;
|
|
|
|
info1W->pUserName = asciitounicode(&usBuffer, info1A->pUserName);
|
|
|
|
info1W->pDocument = asciitounicode(&usBuffer, info1A->pDocument);
|
|
|
|
info1W->pDatatype = asciitounicode(&usBuffer, info1A->pDatatype);
|
|
|
|
info1W->pStatus = asciitounicode(&usBuffer, info1A->pStatus);
|
|
|
|
info1W->Status = info1A->Status;
|
|
|
|
info1W->Priority = info1A->Priority;
|
|
|
|
info1W->Position = info1A->Position;
|
|
|
|
info1W->PagesPrinted = info1A->PagesPrinted;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
JOB_INFO_2W *info2W = HeapAlloc(GetProcessHeap(), 0, sizeof(*info2W));
|
|
|
|
JOB_INFO_2A *info2A = (JOB_INFO_2A*)pJob;
|
|
|
|
|
|
|
|
JobW = (LPBYTE)info2W;
|
|
|
|
info2W->pUserName = asciitounicode(&usBuffer, info2A->pUserName);
|
|
|
|
info2W->pDocument = asciitounicode(&usBuffer, info2A->pDocument);
|
|
|
|
info2W->pNotifyName = asciitounicode(&usBuffer, info2A->pNotifyName);
|
|
|
|
info2W->pDatatype = asciitounicode(&usBuffer, info2A->pDatatype);
|
|
|
|
info2W->pPrintProcessor = asciitounicode(&usBuffer, info2A->pPrintProcessor);
|
|
|
|
info2W->pParameters = asciitounicode(&usBuffer, info2A->pParameters);
|
|
|
|
info2W->pDevMode = info2A->pDevMode ? GdiConvertToDevmodeW(info2A->pDevMode) : NULL;
|
|
|
|
info2W->pStatus = asciitounicode(&usBuffer, info2A->pStatus);
|
|
|
|
info2W->pSecurityDescriptor = info2A->pSecurityDescriptor;
|
|
|
|
info2W->Status = info2A->Status;
|
|
|
|
info2W->Priority = info2A->Priority;
|
|
|
|
info2W->Position = info2A->Position;
|
|
|
|
info2W->StartTime = info2A->StartTime;
|
|
|
|
info2W->UntilTime = info2A->UntilTime;
|
|
|
|
info2W->PagesPrinted = info2A->PagesPrinted;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
JobW = HeapAlloc(GetProcessHeap(), 0, sizeof(JOB_INFO_3));
|
|
|
|
memcpy(JobW, pJob, sizeof(JOB_INFO_3));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = SetJobW(hPrinter, JobId, Level, JobW, Command);
|
|
|
|
|
|
|
|
switch(Level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
JOB_INFO_1W *info1W = (JOB_INFO_1W*)JobW;
|
|
|
|
HeapFree(GetProcessHeap(), 0, info1W->pUserName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info1W->pDocument);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info1W->pDatatype);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info1W->pStatus);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
JOB_INFO_2W *info2W = (JOB_INFO_2W*)JobW;
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pUserName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pDocument);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pNotifyName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pDatatype);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pPrintProcessor);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pParameters);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pDevMode);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info2W->pStatus);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, JobW);
|
|
|
|
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetJobW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetJobW(HANDLE hPrinter, DWORD JobId, DWORD Level,
|
2005-07-13 16:14:37 +02:00
|
|
|
LPBYTE pJob, DWORD Command)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2005-07-13 16:14:37 +02:00
|
|
|
BOOL ret = FALSE;
|
|
|
|
job_t *job;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %d, %d, %p, %d)\n", hPrinter, JobId, Level, pJob, Command);
|
2005-07-13 16:14:37 +02:00
|
|
|
FIXME("Ignoring everything other than document title\n");
|
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
job = get_job(hPrinter, JobId);
|
|
|
|
if(!job)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
switch(Level)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
JOB_INFO_1W *info1 = (JOB_INFO_1W*)pJob;
|
|
|
|
HeapFree(GetProcessHeap(), 0, job->document_title);
|
|
|
|
job->document_title = strdupW(info1->pDocument);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
JOB_INFO_2W *info2 = (JOB_INFO_2W*)pJob;
|
|
|
|
HeapFree(GetProcessHeap(), 0, job->document_title);
|
|
|
|
job->document_title = strdupW(info2->pDocument);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
ret = TRUE;
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
2002-12-17 22:00:38 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* EndDocPrinter [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EndDocPrinter(HANDLE hPrinter)
|
|
|
|
{
|
2005-07-08 16:19:18 +02:00
|
|
|
opened_printer_t *printer;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
TRACE("(%p)\n", hPrinter);
|
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
|
|
|
|
printer = get_opened_printer(hPrinter);
|
|
|
|
if(!printer)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!printer->doc)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_SPL_NO_STARTDOC);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(printer->doc->hf);
|
|
|
|
ScheduleJob(hPrinter, printer->doc->job_id);
|
|
|
|
HeapFree(GetProcessHeap(), 0, printer->doc);
|
|
|
|
printer->doc = NULL;
|
|
|
|
ret = TRUE;
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
2002-12-17 22:00:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EndPagePrinter [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EndPagePrinter(HANDLE hPrinter)
|
|
|
|
{
|
2005-07-08 16:19:18 +02:00
|
|
|
FIXME("(%p): stub\n", hPrinter);
|
|
|
|
return TRUE;
|
2002-12-17 22:00:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* StartDocPrinterA [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI StartDocPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo)
|
|
|
|
{
|
2005-06-30 20:10:59 +02:00
|
|
|
UNICODE_STRING usBuffer;
|
|
|
|
DOC_INFO_2W doc2W;
|
|
|
|
DOC_INFO_2A *doc2 = (DOC_INFO_2A*)pDocInfo;
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
/* DOC_INFO_1, 2 and 3 all have the strings in the same place with either two (DOC_INFO_2)
|
|
|
|
or one (DOC_INFO_3) extra DWORDs */
|
|
|
|
|
|
|
|
switch(Level) {
|
|
|
|
case 2:
|
|
|
|
doc2W.JobId = doc2->JobId;
|
|
|
|
/* fall through */
|
|
|
|
case 3:
|
|
|
|
doc2W.dwMode = doc2->dwMode;
|
|
|
|
/* fall through */
|
|
|
|
case 1:
|
|
|
|
doc2W.pDocName = asciitounicode(&usBuffer, doc2->pDocName);
|
|
|
|
doc2W.pOutputFile = asciitounicode(&usBuffer, doc2->pOutputFile);
|
|
|
|
doc2W.pDatatype = asciitounicode(&usBuffer, doc2->pDatatype);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = StartDocPrinterW(hPrinter, Level, (LPBYTE)&doc2W);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, doc2W.pDatatype);
|
|
|
|
HeapFree(GetProcessHeap(), 0, doc2W.pOutputFile);
|
|
|
|
HeapFree(GetProcessHeap(), 0, doc2W.pDocName);
|
|
|
|
|
|
|
|
return ret;
|
2002-12-17 22:00:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* StartDocPrinterW [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI StartDocPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pDocInfo)
|
|
|
|
{
|
2005-06-30 20:10:59 +02:00
|
|
|
DOC_INFO_2W *doc = (DOC_INFO_2W *)pDocInfo;
|
2005-07-08 16:19:18 +02:00
|
|
|
opened_printer_t *printer;
|
|
|
|
BYTE addjob_buf[MAX_PATH * sizeof(WCHAR) + sizeof(ADDJOB_INFO_1W)];
|
|
|
|
ADDJOB_INFO_1W *addjob = (ADDJOB_INFO_1W*) addjob_buf;
|
2005-07-13 16:14:37 +02:00
|
|
|
JOB_INFO_1W job_info;
|
2005-07-08 16:19:18 +02:00
|
|
|
DWORD needed, ret = 0;
|
|
|
|
HANDLE hf;
|
|
|
|
WCHAR *filename;
|
2005-06-30 20:10:59 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(hPrinter = %p, Level = %d, pDocInfo = %p {pDocName = %s, pOutputFile = %s, pDatatype = %s}):\n",
|
2005-06-30 20:10:59 +02:00
|
|
|
hPrinter, Level, doc, debugstr_w(doc->pDocName), debugstr_w(doc->pOutputFile),
|
|
|
|
debugstr_w(doc->pDatatype));
|
2005-07-08 16:19:18 +02:00
|
|
|
|
|
|
|
if(Level < 1 || Level > 3)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
printer = get_opened_printer(hPrinter);
|
|
|
|
if(!printer)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(printer->doc)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_STATE);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Even if we're printing to a file we still add a print job, we'll
|
|
|
|
just ignore the spool file name */
|
|
|
|
|
|
|
|
if(!AddJobW(hPrinter, 1, addjob_buf, sizeof(addjob_buf), &needed))
|
|
|
|
{
|
2007-01-18 11:37:51 +01:00
|
|
|
ERR("AddJob failed gle %u\n", GetLastError());
|
2005-07-08 16:19:18 +02:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(doc->pOutputFile)
|
|
|
|
filename = doc->pOutputFile;
|
|
|
|
else
|
|
|
|
filename = addjob->Path;
|
|
|
|
|
|
|
|
hf = CreateFileW(filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
if(hf == INVALID_HANDLE_VALUE)
|
|
|
|
goto end;
|
|
|
|
|
2005-07-13 16:14:37 +02:00
|
|
|
memset(&job_info, 0, sizeof(job_info));
|
|
|
|
job_info.pDocument = doc->pDocName;
|
|
|
|
SetJobW(hPrinter, addjob->JobId, 1, (LPBYTE)&job_info, 0);
|
2005-07-08 16:19:18 +02:00
|
|
|
|
|
|
|
printer->doc = HeapAlloc(GetProcessHeap(), 0, sizeof(*printer->doc));
|
|
|
|
printer->doc->hf = hf;
|
|
|
|
ret = printer->doc->job_id = addjob->JobId;
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
|
|
|
|
return ret;
|
2002-12-17 22:00:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* StartPagePrinter [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI StartPagePrinter(HANDLE hPrinter)
|
|
|
|
{
|
2005-07-08 16:19:18 +02:00
|
|
|
FIXME("(%p): stub\n", hPrinter);
|
|
|
|
return TRUE;
|
2002-12-17 22:00:38 +01:00
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetFormA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level,
|
|
|
|
LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%s,%d,%p,%d,%p): stub\n",hPrinter,pFormName,
|
2002-06-01 01:06:46 +02:00
|
|
|
Level,pForm,cbBuf,pcbNeeded);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetFormW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level,
|
|
|
|
LPBYTE pForm, DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%s,%d,%p,%d,%p): stub\n",hPrinter,
|
1999-05-17 18:20:51 +02:00
|
|
|
debugstr_w(pFormName),Level,pForm,cbBuf,pcbNeeded);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetFormA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetFormA(HANDLE hPrinter, LPSTR pFormName, DWORD Level,
|
|
|
|
LPBYTE pForm)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%s,%d,%p): stub\n",hPrinter,pFormName,Level,pForm);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* SetFormW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetFormW(HANDLE hPrinter, LPWSTR pFormName, DWORD Level,
|
|
|
|
LPBYTE pForm)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%p,%d,%p): stub\n",hPrinter,pFormName,Level,pForm);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* ReadPrinter [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ReadPrinter(HANDLE hPrinter, LPVOID pBuf, DWORD cbBuf,
|
|
|
|
LPDWORD pNoBytesRead)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,%p,%d,%p): stub\n",hPrinter,pBuf,cbBuf,pNoBytesRead);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* ResetPrinterA [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ResetPrinterA(HANDLE hPrinter, LPPRINTER_DEFAULTSA pDefault)
|
|
|
|
{
|
2002-10-22 02:47:33 +02:00
|
|
|
FIXME("(%p, %p): stub\n", hPrinter, pDefault);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* ResetPrinterW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ResetPrinterW(HANDLE hPrinter, LPPRINTER_DEFAULTSW pDefault)
|
|
|
|
{
|
2002-10-22 02:47:33 +02:00
|
|
|
FIXME("(%p, %p): stub\n", hPrinter, pDefault);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_GetDWORDFromReg
|
|
|
|
*
|
|
|
|
* Return DWORD associated with ValueName from hkey.
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static DWORD WINSPOOL_GetDWORDFromReg(HKEY hkey, LPCSTR ValueName)
|
|
|
|
{
|
|
|
|
DWORD sz = sizeof(DWORD), type, value = 0;
|
|
|
|
LONG ret;
|
|
|
|
|
|
|
|
ret = RegQueryValueExA(hkey, ValueName, 0, &type, (LPBYTE)&value, &sz);
|
|
|
|
|
|
|
|
if(ret != ERROR_SUCCESS) {
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN("Got ret = %d on name %s\n", ret, ValueName);
|
2000-05-26 01:02:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(type != REG_DWORD) {
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("Got type %d\n", type);
|
2000-05-26 01:02:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
1999-07-10 13:58:50 +02:00
|
|
|
|
2007-07-26 23:05:27 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* get_filename_from_reg [internal]
|
|
|
|
*
|
|
|
|
* Get ValueName from hkey storing result in out
|
|
|
|
* when the Value in the registry has only a filename, use driverdir as prefix
|
|
|
|
* outlen is space left in out
|
|
|
|
* String is stored either as unicode or ascii
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static BOOL get_filename_from_reg(HKEY hkey, LPCWSTR driverdir, DWORD dirlen, LPCWSTR ValueName,
|
|
|
|
LPBYTE out, DWORD outlen, LPDWORD needed, BOOL unicode)
|
|
|
|
{
|
|
|
|
WCHAR filename[MAX_PATH];
|
|
|
|
DWORD size;
|
|
|
|
DWORD type;
|
|
|
|
LONG ret;
|
|
|
|
LPWSTR buffer = filename;
|
|
|
|
LPWSTR ptr;
|
|
|
|
|
|
|
|
*needed = 0;
|
|
|
|
size = sizeof(filename);
|
|
|
|
buffer[0] = '\0';
|
|
|
|
ret = RegQueryValueExW(hkey, ValueName, NULL, &type, (LPBYTE) buffer, &size);
|
|
|
|
if (ret == ERROR_MORE_DATA) {
|
|
|
|
TRACE("need dynamic buffer: %u\n", size);
|
|
|
|
buffer = HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
if (!buffer) {
|
|
|
|
/* No Memory is bad */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
buffer[0] = '\0';
|
|
|
|
ret = RegQueryValueExW(hkey, ValueName, NULL, &type, (LPBYTE) buffer, &size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ret != ERROR_SUCCESS) || (!buffer[0])) {
|
|
|
|
if (buffer != filename) HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = buffer;
|
|
|
|
while (ptr) {
|
|
|
|
/* do we have a full path ? */
|
|
|
|
ret = (((buffer[0] == '\\') && (buffer[1] == '\\')) ||
|
|
|
|
(buffer[0] && (buffer[1] == ':') && (buffer[2] == '\\')) );
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
/* we must build the full Path */
|
|
|
|
*needed += dirlen;
|
|
|
|
if ((out) && (outlen > dirlen)) {
|
|
|
|
if (unicode) {
|
|
|
|
lstrcpyW((LPWSTR)out, driverdir);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, driverdir, -1, (LPSTR)out, outlen, NULL, NULL);
|
|
|
|
}
|
|
|
|
out += dirlen;
|
|
|
|
outlen -= dirlen;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
out = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write the filename */
|
|
|
|
if (unicode) {
|
|
|
|
size = (lstrlenW(ptr) + 1) * sizeof(WCHAR);
|
|
|
|
if ((out) && (outlen >= size)) {
|
|
|
|
lstrcpyW((LPWSTR)out, ptr);
|
|
|
|
out += size;
|
|
|
|
outlen -= size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
out = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = WideCharToMultiByte(CP_ACP, 0, ptr, -1, NULL, 0, NULL, NULL);
|
|
|
|
if ((out) && (outlen >= size)) {
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, ptr, -1, (LPSTR)out, outlen, NULL, NULL);
|
|
|
|
out += size;
|
|
|
|
outlen -= size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
out = NULL;
|
|
|
|
}
|
|
|
|
*needed += size;
|
|
|
|
ptr += lstrlenW(ptr)+1;
|
|
|
|
if ((type != REG_MULTI_SZ) || (!ptr[0])) ptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer != filename) HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
|
|
|
|
/* write the multisz-termination */
|
|
|
|
if (type == REG_MULTI_SZ) {
|
|
|
|
size = (unicode) ? sizeof(WCHAR) : 1;
|
|
|
|
|
|
|
|
*needed += size;
|
|
|
|
if (out && (outlen >= size)) {
|
|
|
|
memset (out, 0, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-07-10 13:58:50 +02:00
|
|
|
/*****************************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetStringFromReg
|
1999-07-10 13:58:50 +02:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Get ValueName from hkey storing result in ptr. buflen is space left in ptr
|
|
|
|
* String is stored either as unicode or ascii.
|
|
|
|
* Bit of a hack here to get the ValueName if we want ascii.
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetStringFromReg(HKEY hkey, LPCWSTR ValueName, LPBYTE ptr,
|
|
|
|
DWORD buflen, DWORD *needed,
|
|
|
|
BOOL unicode)
|
1999-07-10 13:58:50 +02:00
|
|
|
{
|
|
|
|
DWORD sz = buflen, type;
|
|
|
|
LONG ret;
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(unicode)
|
|
|
|
ret = RegQueryValueExW(hkey, ValueName, 0, &type, ptr, &sz);
|
|
|
|
else {
|
2006-11-17 15:29:40 +01:00
|
|
|
LPSTR ValueNameA = strdupWtoA(ValueName);
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = RegQueryValueExA(hkey, ValueNameA, 0, &type, ptr, &sz);
|
|
|
|
HeapFree(GetProcessHeap(),0,ValueNameA);
|
|
|
|
}
|
|
|
|
if(ret != ERROR_SUCCESS && ret != ERROR_MORE_DATA) {
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN("Got ret = %d\n", ret);
|
2000-05-26 01:02:46 +02:00
|
|
|
*needed = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-04-14 15:34:57 +02:00
|
|
|
/* add space for terminating '\0' */
|
|
|
|
sz += unicode ? sizeof(WCHAR) : 1;
|
2000-05-26 01:02:46 +02:00
|
|
|
*needed = sz;
|
2006-04-14 15:34:57 +02:00
|
|
|
|
|
|
|
if (ptr)
|
|
|
|
TRACE("%s: %s\n", debugstr_w(ValueName), unicode ? debugstr_w((LPCWSTR)ptr) : debugstr_a((LPCSTR)ptr));
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-09-07 20:35:58 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_GetDefaultDevMode
|
|
|
|
*
|
|
|
|
* Get a default DevMode values for wineps.
|
|
|
|
* FIXME - use ppd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void WINSPOOL_GetDefaultDevMode(
|
|
|
|
LPBYTE ptr,
|
|
|
|
DWORD buflen, DWORD *needed,
|
|
|
|
BOOL unicode)
|
|
|
|
{
|
|
|
|
DEVMODEA dm;
|
2005-08-19 12:04:03 +02:00
|
|
|
static const char szwps[] = "wineps.drv";
|
2001-09-07 20:35:58 +02:00
|
|
|
|
|
|
|
/* fill default DEVMODE - should be read from ppd... */
|
|
|
|
ZeroMemory( &dm, sizeof(dm) );
|
2005-08-19 12:04:03 +02:00
|
|
|
memcpy(dm.dmDeviceName,szwps,sizeof szwps);
|
2001-09-07 20:35:58 +02:00
|
|
|
dm.dmSpecVersion = DM_SPECVERSION;
|
|
|
|
dm.dmDriverVersion = 1;
|
|
|
|
dm.dmSize = sizeof(DEVMODEA);
|
|
|
|
dm.dmDriverExtra = 0;
|
|
|
|
dm.dmFields =
|
|
|
|
DM_ORIENTATION | DM_PAPERSIZE |
|
|
|
|
DM_PAPERLENGTH | DM_PAPERWIDTH |
|
|
|
|
DM_SCALE |
|
|
|
|
DM_COPIES |
|
|
|
|
DM_DEFAULTSOURCE | DM_PRINTQUALITY |
|
|
|
|
DM_YRESOLUTION | DM_TTOPTION;
|
|
|
|
|
|
|
|
dm.u1.s1.dmOrientation = DMORIENT_PORTRAIT;
|
|
|
|
dm.u1.s1.dmPaperSize = DMPAPER_A4;
|
|
|
|
dm.u1.s1.dmPaperLength = 2970;
|
|
|
|
dm.u1.s1.dmPaperWidth = 2100;
|
|
|
|
|
2007-11-01 07:22:11 +01:00
|
|
|
dm.u1.s1.dmScale = 100;
|
|
|
|
dm.u1.s1.dmCopies = 1;
|
|
|
|
dm.u1.s1.dmDefaultSource = DMBIN_AUTO;
|
|
|
|
dm.u1.s1.dmPrintQuality = DMRES_MEDIUM;
|
2001-09-07 20:35:58 +02:00
|
|
|
/* dm.dmColor */
|
|
|
|
/* dm.dmDuplex */
|
|
|
|
dm.dmYResolution = 300; /* 300dpi */
|
|
|
|
dm.dmTTOption = DMTT_BITMAP;
|
|
|
|
/* dm.dmCollate */
|
|
|
|
/* dm.dmFormName */
|
|
|
|
/* dm.dmLogPixels */
|
|
|
|
/* dm.dmBitsPerPel */
|
|
|
|
/* dm.dmPelsWidth */
|
|
|
|
/* dm.dmPelsHeight */
|
2007-11-01 07:22:11 +01:00
|
|
|
/* dm.u2.dmDisplayFlags */
|
2001-09-07 20:35:58 +02:00
|
|
|
/* dm.dmDisplayFrequency */
|
|
|
|
/* dm.dmICMMethod */
|
|
|
|
/* dm.dmICMIntent */
|
|
|
|
/* dm.dmMediaType */
|
|
|
|
/* dm.dmDitherType */
|
|
|
|
/* dm.dmReserved1 */
|
|
|
|
/* dm.dmReserved2 */
|
|
|
|
/* dm.dmPanningWidth */
|
|
|
|
/* dm.dmPanningHeight */
|
|
|
|
|
|
|
|
if(unicode) {
|
|
|
|
if(buflen >= sizeof(DEVMODEW)) {
|
2003-08-12 22:42:18 +02:00
|
|
|
DEVMODEW *pdmW = GdiConvertToDevmodeW(&dm);
|
2001-09-07 20:35:58 +02:00
|
|
|
memcpy(ptr, pdmW, sizeof(DEVMODEW));
|
|
|
|
HeapFree(GetProcessHeap(),0,pdmW);
|
|
|
|
}
|
|
|
|
*needed = sizeof(DEVMODEW);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(buflen >= sizeof(DEVMODEA)) {
|
|
|
|
memcpy(ptr, &dm, sizeof(DEVMODEA));
|
|
|
|
}
|
|
|
|
*needed = sizeof(DEVMODEA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_GetDevModeFromReg
|
|
|
|
*
|
|
|
|
* Get ValueName from hkey storing result in ptr. buflen is space left in ptr
|
|
|
|
* DevMode is stored either as unicode or ascii.
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetDevModeFromReg(HKEY hkey, LPCWSTR ValueName,
|
|
|
|
LPBYTE ptr,
|
|
|
|
DWORD buflen, DWORD *needed,
|
|
|
|
BOOL unicode)
|
|
|
|
{
|
|
|
|
DWORD sz = buflen, type;
|
|
|
|
LONG ret;
|
1999-07-10 13:58:50 +02:00
|
|
|
|
2001-09-07 20:35:58 +02:00
|
|
|
if (ptr && buflen>=sizeof(DEVMODEA)) memset(ptr, 0, sizeof(DEVMODEA));
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = RegQueryValueExW(hkey, ValueName, 0, &type, ptr, &sz);
|
2000-08-16 14:43:00 +02:00
|
|
|
if ((ret != ERROR_SUCCESS && ret != ERROR_MORE_DATA)) sz = 0;
|
|
|
|
if (sz < sizeof(DEVMODEA))
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("corrupted registry for %s ( size %d)\n",debugstr_w(ValueName),sz);
|
2001-05-09 19:10:41 +02:00
|
|
|
return FALSE;
|
1999-07-10 13:58:50 +02:00
|
|
|
}
|
2000-08-16 14:43:00 +02:00
|
|
|
/* ensures that dmSize is not erratically bogus if registry is invalid */
|
|
|
|
if (ptr && ((DEVMODEA*)ptr)->dmSize < sizeof(DEVMODEA))
|
|
|
|
((DEVMODEA*)ptr)->dmSize = sizeof(DEVMODEA);
|
2000-05-26 01:02:46 +02:00
|
|
|
if(unicode) {
|
|
|
|
sz += (CCHDEVICENAME + CCHFORMNAME);
|
|
|
|
if(buflen >= sz) {
|
2003-08-12 22:42:18 +02:00
|
|
|
DEVMODEW *dmW = GdiConvertToDevmodeW((DEVMODEA*)ptr);
|
2000-05-26 01:02:46 +02:00
|
|
|
memcpy(ptr, dmW, sz);
|
|
|
|
HeapFree(GetProcessHeap(),0,dmW);
|
|
|
|
}
|
|
|
|
}
|
1999-07-10 13:58:50 +02:00
|
|
|
*needed = sz;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-04-12 15:08:22 +02:00
|
|
|
/*********************************************************************
|
|
|
|
* WINSPOOL_GetPrinter_1
|
|
|
|
*
|
|
|
|
* Fills out a PRINTER_INFO_1A|W struct storing the strings in buf.
|
|
|
|
* The strings are either stored as unicode or ascii.
|
|
|
|
*/
|
|
|
|
static BOOL WINSPOOL_GetPrinter_1(HKEY hkeyPrinter, PRINTER_INFO_1W *pi1,
|
|
|
|
LPBYTE buf, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
BOOL unicode)
|
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi1->pName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: pDescription should be something like "Name,Driver_Name,". */
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi1->pDescription = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, DescriptionW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi1->pComment = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pi1) pi1->Flags = PRINTER_ENUM_ICON8; /* We're a printer */
|
|
|
|
|
|
|
|
if(!space && pi1) /* zero out pi1 if we can't completely fill buf */
|
|
|
|
memset(pi1, 0, sizeof(*pi1));
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
/*********************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetPrinter_2
|
1999-09-10 16:37:29 +02:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Fills out a PRINTER_INFO_2A|W struct storing the strings in buf.
|
|
|
|
* The strings are either stored as unicode or ascii.
|
1999-09-10 16:37:29 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetPrinter_2(HKEY hkeyPrinter, PRINTER_INFO_2W *pi2,
|
|
|
|
LPBYTE buf, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
BOOL unicode)
|
1999-09-10 16:37:29 +02:00
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pPrinterName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, Share_NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pShareName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, PortW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pPortName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, Printer_DriverW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pDriverName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, DescriptionW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pComment = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, LocationW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pLocation = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetDevModeFromReg(hkeyPrinter, Default_DevModeW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pDevMode = (LPDEVMODEW)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
2001-09-07 20:35:58 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
WINSPOOL_GetDefaultDevMode(ptr, left, &size, unicode);
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pDevMode = (LPDEVMODEW)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, Separator_FileW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pSepFile = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, Print_ProcessorW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pPrintProcessor = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, DatatypeW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pDatatype = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, ParametersW, ptr, left,
|
|
|
|
&size, unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi2->pParameters = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(pi2) {
|
2002-06-01 01:06:46 +02:00
|
|
|
pi2->Attributes = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "Attributes");
|
2000-05-26 01:02:46 +02:00
|
|
|
pi2->Priority = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "Priority");
|
|
|
|
pi2->DefaultPriority = WINSPOOL_GetDWORDFromReg(hkeyPrinter,
|
|
|
|
"Default Priority");
|
|
|
|
pi2->StartTime = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "StartTime");
|
|
|
|
pi2->UntilTime = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "UntilTime");
|
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
|
|
|
|
if(!space && pi2) /* zero out pi2 if we can't completely fill buf */
|
|
|
|
memset(pi2, 0, sizeof(*pi2));
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetPrinter_4
|
1999-09-10 16:37:29 +02:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Fills out a PRINTER_INFO_4 struct storing the strings in buf.
|
1999-09-10 16:37:29 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetPrinter_4(HKEY hkeyPrinter, PRINTER_INFO_4W *pi4,
|
|
|
|
LPBYTE buf, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
BOOL unicode)
|
1999-09-10 16:37:29 +02:00
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi4->pPrinterName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(pi4) {
|
2002-06-01 01:06:46 +02:00
|
|
|
pi4->Attributes = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "Attributes");
|
2000-05-26 01:02:46 +02:00
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
|
|
|
|
if(!space && pi4) /* zero out pi4 if we can't completely fill buf */
|
|
|
|
memset(pi4, 0, sizeof(*pi4));
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetPrinter_5
|
1999-09-10 16:37:29 +02:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Fills out a PRINTER_INFO_5 struct storing the strings in buf.
|
1999-09-10 16:37:29 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetPrinter_5(HKEY hkeyPrinter, PRINTER_INFO_5W *pi5,
|
|
|
|
LPBYTE buf, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
BOOL unicode)
|
1999-09-10 16:37:29 +02:00
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, NameW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi5->pPrinterName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(WINSPOOL_GetStringFromReg(hkeyPrinter, PortW, ptr, left, &size,
|
|
|
|
unicode)) {
|
|
|
|
if(space && size <= left) {
|
|
|
|
pi5->pPortName = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
} else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
}
|
|
|
|
if(pi5) {
|
2002-06-01 01:06:46 +02:00
|
|
|
pi5->Attributes = WINSPOOL_GetDWORDFromReg(hkeyPrinter, "Attributes");
|
2000-05-26 01:02:46 +02:00
|
|
|
pi5->DeviceNotSelectedTimeout = WINSPOOL_GetDWORDFromReg(hkeyPrinter,
|
2002-06-01 01:06:46 +02:00
|
|
|
"dnsTimeout");
|
2000-05-26 01:02:46 +02:00
|
|
|
pi5->TransmissionRetryTimeout = WINSPOOL_GetDWORDFromReg(hkeyPrinter,
|
2002-06-01 01:06:46 +02:00
|
|
|
"txTimeout");
|
2000-05-26 01:02:46 +02:00
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
|
|
|
|
if(!space && pi5) /* zero out pi5 if we can't completely fill buf */
|
|
|
|
memset(pi5, 0, sizeof(*pi5));
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
1999-07-10 13:58:50 +02:00
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetPrinter
|
|
|
|
*
|
|
|
|
* Implementation of GetPrinterA|W. Relies on PRINTER_INFO_*W being
|
|
|
|
* essentially the same as PRINTER_INFO_*A. i.e. the structure itself is
|
|
|
|
* just a collection of pointers to strings.
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_GetPrinter(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, BOOL unicode)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2001-02-28 06:26:08 +01:00
|
|
|
LPCWSTR name;
|
1999-07-10 13:58:50 +02:00
|
|
|
DWORD size, needed = 0;
|
|
|
|
LPBYTE ptr = NULL;
|
|
|
|
HKEY hkeyPrinter, hkeyPrinters;
|
1999-09-10 16:37:29 +02:00
|
|
|
BOOL ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p,%d,%p,%d,%p)\n",hPrinter,Level,pPrinter,cbBuf, pcbNeeded);
|
1999-05-17 18:20:51 +02:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
if (!(name = get_opened_printer_name(hPrinter))) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-02-28 06:26:08 +01:00
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
1999-07-10 13:58:50 +02:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-02-28 06:26:08 +01:00
|
|
|
if(RegOpenKeyW(hkeyPrinters, name, &hkeyPrinter) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
ERR("Can't find opened printer %s in registry\n", debugstr_w(name));
|
1999-07-10 13:58:50 +02:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_NAME); /* ? */
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
|
1999-07-10 13:58:50 +02:00
|
|
|
switch(Level) {
|
|
|
|
case 2:
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_INFO_2W *pi2 = (PRINTER_INFO_2W *)pPrinter;
|
1999-07-10 13:58:50 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
size = sizeof(PRINTER_INFO_2W);
|
1999-07-10 13:58:50 +02:00
|
|
|
if(size <= cbBuf) {
|
|
|
|
ptr = pPrinter + size;
|
|
|
|
cbBuf -= size;
|
|
|
|
memset(pPrinter, 0, size);
|
1999-09-10 16:37:29 +02:00
|
|
|
} else {
|
|
|
|
pi2 = NULL;
|
1999-07-10 13:58:50 +02:00
|
|
|
cbBuf = 0;
|
1999-09-10 16:37:29 +02:00
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = WINSPOOL_GetPrinter_2(hkeyPrinter, pi2, ptr, cbBuf, &needed,
|
|
|
|
unicode);
|
1999-07-10 13:58:50 +02:00
|
|
|
needed += size;
|
1999-09-10 16:37:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-09-10 16:37:29 +02:00
|
|
|
case 4:
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_INFO_4W *pi4 = (PRINTER_INFO_4W *)pPrinter;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
size = sizeof(PRINTER_INFO_4W);
|
1999-09-10 16:37:29 +02:00
|
|
|
if(size <= cbBuf) {
|
|
|
|
ptr = pPrinter + size;
|
|
|
|
cbBuf -= size;
|
|
|
|
memset(pPrinter, 0, size);
|
|
|
|
} else {
|
|
|
|
pi4 = NULL;
|
1999-07-10 13:58:50 +02:00
|
|
|
cbBuf = 0;
|
1999-09-10 16:37:29 +02:00
|
|
|
}
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = WINSPOOL_GetPrinter_4(hkeyPrinter, pi4, ptr, cbBuf, &needed,
|
|
|
|
unicode);
|
1999-07-10 13:58:50 +02:00
|
|
|
needed += size;
|
|
|
|
break;
|
|
|
|
}
|
1999-09-10 16:37:29 +02:00
|
|
|
|
|
|
|
|
1999-07-10 13:58:50 +02:00
|
|
|
case 5:
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
PRINTER_INFO_5W *pi5 = (PRINTER_INFO_5W *)pPrinter;
|
1999-07-10 13:58:50 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
size = sizeof(PRINTER_INFO_5W);
|
1999-07-10 13:58:50 +02:00
|
|
|
if(size <= cbBuf) {
|
|
|
|
ptr = pPrinter + size;
|
|
|
|
cbBuf -= size;
|
|
|
|
memset(pPrinter, 0, size);
|
1999-09-10 16:37:29 +02:00
|
|
|
} else {
|
|
|
|
pi5 = NULL;
|
1999-07-10 13:58:50 +02:00
|
|
|
cbBuf = 0;
|
1999-09-10 16:37:29 +02:00
|
|
|
}
|
1999-07-10 13:58:50 +02:00
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = WINSPOOL_GetPrinter_5(hkeyPrinter, pi5, ptr, cbBuf, &needed,
|
|
|
|
unicode);
|
1999-07-10 13:58:50 +02:00
|
|
|
needed += size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Unimplemented level %d\n", Level);
|
1999-07-10 13:58:50 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-07-10 13:58:50 +02:00
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("returning %d needed = %d\n", ret, needed);
|
1999-07-10 13:58:50 +02:00
|
|
|
if(pcbNeeded) *pcbNeeded = needed;
|
1999-09-10 16:37:29 +02:00
|
|
|
if(!ret)
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return ret;
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetPrinterW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
|
2000-05-26 01:02:46 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
return WINSPOOL_GetPrinter(hPrinter, Level, pPrinter, cbBuf, pcbNeeded,
|
|
|
|
TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetPrinterA [WINSPOOL.@]
|
2000-05-26 01:02:46 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetPrinterA(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
|
1999-05-17 18:20:51 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
return WINSPOOL_GetPrinter(hPrinter, Level, pPrinter, cbBuf, pcbNeeded,
|
|
|
|
FALSE);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_EnumPrinters
|
1999-10-31 18:34:31 +01:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Implementation of EnumPrintersA|W
|
1999-10-31 18:34:31 +01:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
static BOOL WINSPOOL_EnumPrinters(DWORD dwType, LPWSTR lpszName,
|
|
|
|
DWORD dwLevel, LPBYTE lpbPrinters,
|
|
|
|
DWORD cbBuf, LPDWORD lpdwNeeded,
|
|
|
|
LPDWORD lpdwReturned, BOOL unicode)
|
1999-10-31 18:34:31 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
HKEY hkeyPrinters, hkeyPrinter;
|
2000-05-26 01:02:46 +02:00
|
|
|
WCHAR PrinterName[255];
|
1999-10-31 18:34:31 +01:00
|
|
|
DWORD needed = 0, number = 0;
|
|
|
|
DWORD used, i, left;
|
|
|
|
PBYTE pi, buf;
|
|
|
|
|
|
|
|
if(lpbPrinters)
|
|
|
|
memset(lpbPrinters, 0, cbBuf);
|
|
|
|
if(lpdwReturned)
|
|
|
|
*lpdwReturned = 0;
|
2001-01-09 21:52:17 +01:00
|
|
|
if(lpdwNeeded)
|
|
|
|
*lpdwNeeded = 0;
|
|
|
|
|
|
|
|
/* PRINTER_ENUM_DEFAULT is only supported under win9x, we behave like NT */
|
|
|
|
if(dwType == PRINTER_ENUM_DEFAULT)
|
|
|
|
return TRUE;
|
1999-10-31 18:34:31 +01:00
|
|
|
|
2002-09-09 21:19:18 +02:00
|
|
|
if (dwType & PRINTER_ENUM_CONNECTIONS) {
|
2007-01-21 20:49:34 +01:00
|
|
|
TRACE("ignoring PRINTER_ENUM_CONNECTIONS\n");
|
|
|
|
dwType &= ~PRINTER_ENUM_CONNECTIONS; /* we don't handle that */
|
|
|
|
if (!dwType) {
|
|
|
|
FIXME("We don't handle PRINTER_ENUM_CONNECTIONS\n");
|
|
|
|
*lpdwNeeded = 0;
|
|
|
|
*lpdwReturned = 0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-09-09 21:19:18 +02:00
|
|
|
}
|
|
|
|
|
1999-10-31 18:34:31 +01:00
|
|
|
if (!((dwType & PRINTER_ENUM_LOCAL) || (dwType & PRINTER_ENUM_NAME))) {
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("dwType = %08x\n", dwType);
|
1999-10-31 18:34:31 +01:00
|
|
|
SetLastError(ERROR_INVALID_FLAGS);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
1999-10-31 18:34:31 +01:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-11-28 20:47:58 +01:00
|
|
|
if(RegQueryInfoKeyA(hkeyPrinters, NULL, NULL, NULL, &number, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL) != ERROR_SUCCESS) {
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
ERR("Can't query Printers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("Found %d printers\n", number);
|
1999-10-31 18:34:31 +01:00
|
|
|
|
|
|
|
switch(dwLevel) {
|
|
|
|
case 1:
|
2007-04-12 15:08:22 +02:00
|
|
|
used = number * sizeof(PRINTER_INFO_1W);
|
|
|
|
break;
|
1999-10-31 18:34:31 +01:00
|
|
|
case 2:
|
2000-05-26 01:02:46 +02:00
|
|
|
used = number * sizeof(PRINTER_INFO_2W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
case 4:
|
2000-05-26 01:02:46 +02:00
|
|
|
used = number * sizeof(PRINTER_INFO_4W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
case 5:
|
2000-05-26 01:02:46 +02:00
|
|
|
used = number * sizeof(PRINTER_INFO_5W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
pi = (used <= cbBuf) ? lpbPrinters : NULL;
|
|
|
|
|
|
|
|
for(i = 0; i < number; i++) {
|
2007-12-01 17:43:37 +01:00
|
|
|
if(RegEnumKeyW(hkeyPrinters, i, PrinterName, sizeof(PrinterName)/sizeof(PrinterName[0])) !=
|
1999-10-31 18:34:31 +01:00
|
|
|
ERROR_SUCCESS) {
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("Can't enum key number %d\n", i);
|
1999-10-31 18:34:31 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("Printer %d is %s\n", i, debugstr_w(PrinterName));
|
2000-05-26 01:02:46 +02:00
|
|
|
if(RegOpenKeyW(hkeyPrinters, PrinterName, &hkeyPrinter) !=
|
1999-10-31 18:34:31 +01:00
|
|
|
ERROR_SUCCESS) {
|
2000-05-26 01:02:46 +02:00
|
|
|
ERR("Can't open key %s\n", debugstr_w(PrinterName));
|
1999-10-31 18:34:31 +01:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cbBuf > used) {
|
|
|
|
buf = lpbPrinters + used;
|
|
|
|
left = cbBuf - used;
|
|
|
|
} else {
|
|
|
|
buf = NULL;
|
|
|
|
left = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(dwLevel) {
|
2007-04-12 15:08:22 +02:00
|
|
|
case 1:
|
|
|
|
WINSPOOL_GetPrinter_1(hkeyPrinter, (PRINTER_INFO_1W *)pi, buf,
|
|
|
|
left, &needed, unicode);
|
|
|
|
used += needed;
|
|
|
|
if(pi) pi += sizeof(PRINTER_INFO_1W);
|
|
|
|
break;
|
1999-10-31 18:34:31 +01:00
|
|
|
case 2:
|
2000-05-26 01:02:46 +02:00
|
|
|
WINSPOOL_GetPrinter_2(hkeyPrinter, (PRINTER_INFO_2W *)pi, buf,
|
|
|
|
left, &needed, unicode);
|
1999-10-31 18:34:31 +01:00
|
|
|
used += needed;
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pi) pi += sizeof(PRINTER_INFO_2W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
case 4:
|
2000-05-26 01:02:46 +02:00
|
|
|
WINSPOOL_GetPrinter_4(hkeyPrinter, (PRINTER_INFO_4W *)pi, buf,
|
|
|
|
left, &needed, unicode);
|
1999-10-31 18:34:31 +01:00
|
|
|
used += needed;
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pi) pi += sizeof(PRINTER_INFO_4W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
case 5:
|
2000-05-26 01:02:46 +02:00
|
|
|
WINSPOOL_GetPrinter_5(hkeyPrinter, (PRINTER_INFO_5W *)pi, buf,
|
|
|
|
left, &needed, unicode);
|
1999-10-31 18:34:31 +01:00
|
|
|
used += needed;
|
2000-05-26 01:02:46 +02:00
|
|
|
if(pi) pi += sizeof(PRINTER_INFO_5W);
|
1999-10-31 18:34:31 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("Shouldn't be here!\n");
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
}
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
|
|
|
|
if(lpdwNeeded)
|
|
|
|
*lpdwNeeded = used;
|
2000-05-26 01:02:46 +02:00
|
|
|
|
1999-10-31 18:34:31 +01:00
|
|
|
if(used > cbBuf) {
|
|
|
|
if(lpbPrinters)
|
|
|
|
memset(lpbPrinters, 0, cbBuf);
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(lpdwReturned)
|
2002-06-01 01:06:46 +02:00
|
|
|
*lpdwReturned = number;
|
1999-10-31 18:34:31 +01:00
|
|
|
SetLastError(ERROR_SUCCESS);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
|
1999-10-31 18:34:31 +01:00
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrintersW [WINSPOOL.@]
|
1999-10-31 18:34:31 +01:00
|
|
|
*
|
2000-05-26 01:02:46 +02:00
|
|
|
* Enumerates the available printers, print servers and print
|
|
|
|
* providers, depending on the specified flags, name and level.
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* If level is set to 1:
|
2007-04-12 15:08:22 +02:00
|
|
|
* Returns an array of PRINTER_INFO_1 data structures in the
|
|
|
|
* lpbPrinters buffer.
|
2000-05-26 01:02:46 +02:00
|
|
|
*
|
|
|
|
* If level is set to 2:
|
|
|
|
* Possible flags: PRINTER_ENUM_CONNECTIONS, PRINTER_ENUM_LOCAL.
|
2002-06-01 01:06:46 +02:00
|
|
|
* Returns an array of PRINTER_INFO_2 data structures in the
|
|
|
|
* lpbPrinters buffer. Note that according to MSDN also an
|
2000-05-26 01:02:46 +02:00
|
|
|
* OpenPrinter should be performed on every remote printer.
|
|
|
|
*
|
|
|
|
* If level is set to 4 (officially WinNT only):
|
|
|
|
* Possible flags: PRINTER_ENUM_CONNECTIONS, PRINTER_ENUM_LOCAL.
|
|
|
|
* Fast: Only the registry is queried to retrieve printer names,
|
|
|
|
* no connection to the driver is made.
|
2002-06-01 01:06:46 +02:00
|
|
|
* Returns an array of PRINTER_INFO_4 data structures in the
|
2000-05-26 01:02:46 +02:00
|
|
|
* lpbPrinters buffer.
|
|
|
|
*
|
|
|
|
* If level is set to 5 (officially WinNT4/Win9x only):
|
|
|
|
* Fast: Only the registry is queried to retrieve printer names,
|
|
|
|
* no connection to the driver is made.
|
2002-06-01 01:06:46 +02:00
|
|
|
* Returns an array of PRINTER_INFO_5 data structures in the
|
2000-05-26 01:02:46 +02:00
|
|
|
* lpbPrinters buffer.
|
|
|
|
*
|
|
|
|
* If level set to 3 or 6+:
|
2001-02-28 06:26:08 +01:00
|
|
|
* returns zero (failure!)
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2001-02-28 06:26:08 +01:00
|
|
|
* Returns nonzero (TRUE) on success, or zero on failure, use GetLastError
|
2000-05-26 01:02:46 +02:00
|
|
|
* for information.
|
|
|
|
*
|
|
|
|
* BUGS:
|
|
|
|
* - Only PRINTER_ENUM_LOCAL and PRINTER_ENUM_NAME are implemented.
|
|
|
|
* - Only levels 2, 4 and 5 are implemented at the moment.
|
|
|
|
* - 16-bit printer drivers are not enumerated.
|
2002-06-01 01:06:46 +02:00
|
|
|
* - Returned amount of bytes used/needed does not match the real Windoze
|
|
|
|
* implementation (as in this implementation, all strings are part
|
2000-05-26 01:02:46 +02:00
|
|
|
* of the buffer, whereas Win32 keeps them somewhere else)
|
|
|
|
* - At level 2, EnumPrinters should also call OpenPrinter for remote printers.
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
* - In a regular Wine installation, no registry settings for printers
|
|
|
|
* exist, which makes this function return an empty list.
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrintersW(
|
2000-12-02 00:58:28 +01:00
|
|
|
DWORD dwType, /* [in] Types of print objects to enumerate */
|
|
|
|
LPWSTR lpszName, /* [in] name of objects to enumerate */
|
|
|
|
DWORD dwLevel, /* [in] type of printer info structure */
|
|
|
|
LPBYTE lpbPrinters, /* [out] buffer which receives info */
|
|
|
|
DWORD cbBuf, /* [in] max size of buffer in bytes */
|
|
|
|
LPDWORD lpdwNeeded, /* [out] pointer to var: # bytes used/needed */
|
|
|
|
LPDWORD lpdwReturned /* [out] number of entries returned */
|
2000-05-26 01:02:46 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return WINSPOOL_EnumPrinters(dwType, lpszName, dwLevel, lpbPrinters, cbBuf,
|
|
|
|
lpdwNeeded, lpdwReturned, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrintersA [WINSPOOL.@]
|
2000-05-26 01:02:46 +02:00
|
|
|
*
|
1999-10-31 18:34:31 +01:00
|
|
|
*/
|
2000-05-26 01:02:46 +02:00
|
|
|
BOOL WINAPI EnumPrintersA(DWORD dwType, LPSTR lpszName,
|
|
|
|
DWORD dwLevel, LPBYTE lpbPrinters,
|
|
|
|
DWORD cbBuf, LPDWORD lpdwNeeded,
|
|
|
|
LPDWORD lpdwReturned)
|
1999-10-31 18:34:31 +01:00
|
|
|
{
|
2006-12-04 15:32:36 +01:00
|
|
|
BOOL ret, unicode = FALSE;
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING lpszNameW;
|
2003-02-12 02:19:25 +01:00
|
|
|
PWSTR pwstrNameW;
|
2006-12-04 15:32:36 +01:00
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
pwstrNameW = asciitounicode(&lpszNameW,lpszName);
|
2006-12-04 15:32:36 +01:00
|
|
|
if(!cbBuf) unicode = TRUE; /* return a buffer that's big enough for the unicode version */
|
2003-02-12 02:19:25 +01:00
|
|
|
ret = WINSPOOL_EnumPrinters(dwType, pwstrNameW, dwLevel, lpbPrinters, cbBuf,
|
2006-12-04 15:32:36 +01:00
|
|
|
lpdwNeeded, lpdwReturned, unicode);
|
2003-01-24 00:07:38 +01:00
|
|
|
RtlFreeUnicodeString(&lpszNameW);
|
2000-05-26 01:02:46 +02:00
|
|
|
return ret;
|
1999-10-31 18:34:31 +01:00
|
|
|
}
|
|
|
|
|
2000-09-29 23:05:11 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_GetDriverInfoFromReg [internal]
|
|
|
|
*
|
|
|
|
* Enters the information from the registry into the DRIVER_INFO struct
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* zero if the printer driver does not exist in the registry
|
|
|
|
* (only if Level > 1) otherwise nonzero
|
|
|
|
*/
|
|
|
|
static BOOL WINSPOOL_GetDriverInfoFromReg(
|
|
|
|
HKEY hkeyDrivers,
|
|
|
|
LPWSTR DriverName,
|
2007-07-22 17:21:25 +02:00
|
|
|
const printenv_t * env,
|
2000-09-29 23:05:11 +02:00
|
|
|
DWORD Level,
|
|
|
|
LPBYTE ptr, /* DRIVER_INFO */
|
|
|
|
LPBYTE pDriverStrings, /* strings buffer */
|
|
|
|
DWORD cbBuf, /* size of string buffer */
|
|
|
|
LPDWORD pcbNeeded, /* space needed for str. */
|
|
|
|
BOOL unicode) /* type of strings */
|
2006-04-14 15:34:57 +02:00
|
|
|
{
|
|
|
|
DWORD size, tmp;
|
2000-09-29 23:05:11 +02:00
|
|
|
HKEY hkeyDriver;
|
2007-07-26 23:05:27 +02:00
|
|
|
WCHAR driverdir[MAX_PATH];
|
|
|
|
DWORD dirlen;
|
2000-09-29 23:05:11 +02:00
|
|
|
LPBYTE strPtr = pDriverStrings;
|
2007-07-22 17:21:25 +02:00
|
|
|
LPDRIVER_INFO_8W di = (LPDRIVER_INFO_8W) ptr;
|
2000-09-29 23:05:11 +02:00
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
TRACE("(%p, %s, %p, %d, %p, %p, %d, %d)\n", hkeyDrivers,
|
|
|
|
debugstr_w(DriverName), env,
|
|
|
|
Level, di, pDriverStrings, cbBuf, unicode);
|
2000-09-29 23:05:11 +02:00
|
|
|
|
2007-07-26 23:14:55 +02:00
|
|
|
if (di) ZeroMemory(di, di_sizeof[Level]);
|
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
if (unicode) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded = (lstrlenW(DriverName) + 1) * sizeof(WCHAR);
|
2007-07-22 17:21:25 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
strcpyW((LPWSTR)strPtr, DriverName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*pcbNeeded = WideCharToMultiByte(CP_ACP, 0, DriverName, -1, NULL, 0, NULL, NULL);
|
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, DriverName, -1, (LPSTR)strPtr, *pcbNeeded, NULL, NULL);
|
2000-09-29 23:05:11 +02:00
|
|
|
}
|
2007-07-22 17:21:25 +02:00
|
|
|
|
|
|
|
/* pName for level 1 has a different offset! */
|
|
|
|
if (Level == 1) {
|
|
|
|
if (di) ((LPDRIVER_INFO_1W) di)->pName = (LPWSTR) strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
/* .cVersion and .pName for level > 1 */
|
|
|
|
if (di) {
|
|
|
|
di->cVersion = env->driverversion;
|
|
|
|
di->pName = (LPWSTR) strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? (pDriverStrings + (*pcbNeeded)) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:05:27 +02:00
|
|
|
/* Reserve Space for the largest subdir and a Backslash*/
|
|
|
|
size = sizeof(driverdir) - sizeof(Version3_SubdirW) - sizeof(WCHAR);
|
|
|
|
if (!GetPrinterDriverDirectoryW(NULL, (LPWSTR) env->envname, 1, (LPBYTE) driverdir, size, &size)) {
|
|
|
|
/* Should never Fail */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
lstrcatW(driverdir, env->versionsubdir);
|
|
|
|
lstrcatW(driverdir, backslashW);
|
|
|
|
|
|
|
|
/* dirlen must not include the terminating zero */
|
|
|
|
dirlen = (unicode) ? lstrlenW(driverdir) * sizeof(WCHAR) :
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, driverdir, -1, NULL, 0, NULL, NULL) -1;
|
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
if (!DriverName[0] || RegOpenKeyW(hkeyDrivers, DriverName, &hkeyDriver) != ERROR_SUCCESS) {
|
2007-01-18 11:37:51 +01:00
|
|
|
ERR("Can't find driver %s in registry\n", debugstr_w(DriverName));
|
2000-09-29 23:05:11 +02:00
|
|
|
SetLastError(ERROR_UNKNOWN_PRINTER_DRIVER); /* ? */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
/* pEnvironment */
|
|
|
|
if (unicode)
|
|
|
|
size = (lstrlenW(env->envname) + 1) * sizeof(WCHAR);
|
2000-09-29 23:05:11 +02:00
|
|
|
else
|
2007-07-22 17:21:25 +02:00
|
|
|
size = WideCharToMultiByte(CP_ACP, 0, env->envname, -1, NULL, 0, NULL, NULL);
|
|
|
|
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-22 17:21:25 +02:00
|
|
|
if (*pcbNeeded <= cbBuf) {
|
|
|
|
if (unicode) {
|
|
|
|
lstrcpyW((LPWSTR)strPtr, env->envname);
|
|
|
|
}
|
2000-09-29 23:05:11 +02:00
|
|
|
else
|
2007-07-22 17:21:25 +02:00
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, env->envname, -1, (LPSTR)strPtr, size, NULL, NULL);
|
|
|
|
}
|
|
|
|
if (di) di->pEnvironment = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? (pDriverStrings + (*pcbNeeded)) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:05:27 +02:00
|
|
|
/* .pDriverPath is the Graphics rendering engine.
|
|
|
|
The full Path is required to avoid a crash in some apps */
|
|
|
|
if (get_filename_from_reg(hkeyDriver, driverdir, dirlen, DriverW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:05:27 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
get_filename_from_reg(hkeyDriver, driverdir, dirlen, DriverW, strPtr, size, &tmp, unicode);
|
|
|
|
|
|
|
|
if (di) di->pDriverPath = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? (pDriverStrings + (*pcbNeeded)) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
/* .pDataFile: For postscript-drivers, this is the ppd-file */
|
|
|
|
if (get_filename_from_reg(hkeyDriver, driverdir, dirlen, Data_FileW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:24:31 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
get_filename_from_reg(hkeyDriver, driverdir, dirlen, Data_FileW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pDataFile = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
/* .pConfigFile is the Driver user Interface */
|
|
|
|
if (get_filename_from_reg(hkeyDriver, driverdir, dirlen, Configuration_FileW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:24:31 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
get_filename_from_reg(hkeyDriver, driverdir, dirlen, Configuration_FileW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pConfigFile = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
if (Level == 2 ) {
|
2000-09-29 23:05:11 +02:00
|
|
|
RegCloseKey(hkeyDriver);
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("buffer space %d required %d\n", cbBuf, *pcbNeeded);
|
2000-09-29 23:05:11 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
if (Level == 5 ) {
|
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
FIXME("level 5: incomplete\n");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .pHelpFile */
|
|
|
|
if (get_filename_from_reg(hkeyDriver, driverdir, dirlen, Help_FileW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:24:31 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
get_filename_from_reg(hkeyDriver, driverdir, dirlen, Help_FileW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pHelpFile = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
/* .pDependentFiles */
|
|
|
|
if (get_filename_from_reg(hkeyDriver, driverdir, dirlen, Dependent_FilesW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:24:31 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
get_filename_from_reg(hkeyDriver, driverdir, dirlen, Dependent_FilesW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pDependentFiles = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
2007-08-24 20:05:57 +02:00
|
|
|
else if (GetVersion() & 0x80000000) {
|
2007-09-27 18:57:51 +02:00
|
|
|
/* PowerPoint XP expects that pDependentFiles is always valid on win9x */
|
2007-08-24 20:05:57 +02:00
|
|
|
size = 2 * ((unicode) ? sizeof(WCHAR) : 1);
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if ((*pcbNeeded <= cbBuf) && strPtr) ZeroMemory(strPtr, size);
|
|
|
|
|
|
|
|
if (di) di->pDependentFiles = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
2000-09-29 23:05:11 +02:00
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
/* .pMonitorName is the optional Language Monitor */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, MonitorW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
2007-07-26 23:24:31 +02:00
|
|
|
if (*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, MonitorW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pMonitorName = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:24:31 +02:00
|
|
|
/* .pDefaultDataType */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, DatatypeW, strPtr, 0, &size, unicode)) {
|
2000-09-29 23:05:11 +02:00
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
2007-07-26 23:24:31 +02:00
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, DatatypeW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pDefaultDataType = (LPWSTR)strPtr;
|
2000-09-29 23:05:11 +02:00
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:37:22 +02:00
|
|
|
if (Level == 3 ) {
|
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
TRACE("buffer space %d required %d\n", cbBuf, *pcbNeeded);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .pszzPreviousNames */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, Previous_NamesW, strPtr, 0, &size, unicode)) {
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, Previous_NamesW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pszzPreviousNames = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Level == 4 ) {
|
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
TRACE("buffer space %d required %d\n", cbBuf, *pcbNeeded);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* support is missing, but not important enough for a FIXME */
|
|
|
|
TRACE("%s: DriverDate + DriverVersion not supported\n", debugstr_w(DriverName));
|
|
|
|
|
|
|
|
/* .pszMfgName */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, ManufacturerW, strPtr, 0, &size, unicode)) {
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, ManufacturerW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pszMfgName = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .pszOEMUrl */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, OEM_UrlW, strPtr, 0, &size, unicode)) {
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, OEM_UrlW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pszOEMUrl = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .pszHardwareID */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, HardwareIDW, strPtr, 0, &size, unicode)) {
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, HardwareIDW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pszHardwareID = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .pszProvider */
|
|
|
|
if (WINSPOOL_GetStringFromReg(hkeyDriver, ProviderW, strPtr, 0, &size, unicode)) {
|
|
|
|
*pcbNeeded += size;
|
|
|
|
if(*pcbNeeded <= cbBuf)
|
|
|
|
WINSPOOL_GetStringFromReg(hkeyDriver, ProviderW, strPtr, size, &size, unicode);
|
|
|
|
|
|
|
|
if (di) di->pszProvider = (LPWSTR)strPtr;
|
|
|
|
strPtr = (pDriverStrings) ? pDriverStrings + (*pcbNeeded) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Level == 6 ) {
|
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* support is missing, but not important enough for a FIXME */
|
|
|
|
TRACE("level 8: incomplete\n");
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("buffer space %d required %d\n", cbBuf, *pcbNeeded);
|
2000-09-29 23:05:11 +02:00
|
|
|
RegCloseKey(hkeyDriver);
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-07-10 13:58:50 +02:00
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2000-05-26 01:02:46 +02:00
|
|
|
* WINSPOOL_GetPrinterDriver
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2007-02-18 11:51:09 +01:00
|
|
|
static BOOL WINSPOOL_GetPrinterDriver(HANDLE hPrinter, LPCWSTR pEnvironment,
|
2000-05-26 01:02:46 +02:00
|
|
|
DWORD Level, LPBYTE pDriverInfo,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
BOOL unicode)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2001-02-28 06:26:08 +01:00
|
|
|
LPCWSTR name;
|
2000-05-26 01:02:46 +02:00
|
|
|
WCHAR DriverName[100];
|
2000-09-29 23:05:11 +02:00
|
|
|
DWORD ret, type, size, needed = 0;
|
1999-07-10 13:58:50 +02:00
|
|
|
LPBYTE ptr = NULL;
|
2000-09-29 23:05:11 +02:00
|
|
|
HKEY hkeyPrinter, hkeyPrinters, hkeyDrivers;
|
2007-07-22 17:21:25 +02:00
|
|
|
const printenv_t * env;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p,%s,%d,%p,%d,%p)\n",hPrinter,debugstr_w(pEnvironment),
|
2000-05-26 01:02:46 +02:00
|
|
|
Level,pDriverInfo,cbBuf, pcbNeeded);
|
1999-05-22 20:53:56 +02:00
|
|
|
|
2000-02-25 22:38:17 +01:00
|
|
|
|
2005-07-05 13:00:09 +02:00
|
|
|
if (!(name = get_opened_printer_name(hPrinter))) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-07-22 17:21:25 +02:00
|
|
|
|
2007-07-26 23:14:55 +02:00
|
|
|
if (Level < 1 || Level == 7 || Level > 8) {
|
1999-07-10 13:58:50 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
2007-07-22 17:21:25 +02:00
|
|
|
return FALSE;
|
1999-07-10 13:58:50 +02:00
|
|
|
}
|
2007-07-22 17:21:25 +02:00
|
|
|
|
|
|
|
env = validate_envW(pEnvironment);
|
|
|
|
if (!env) return FALSE; /* SetLastError() is in validate_envW */
|
|
|
|
|
2006-05-21 14:35:29 +02:00
|
|
|
if(RegCreateKeyW(HKEY_LOCAL_MACHINE, PrintersW, &hkeyPrinters) !=
|
1999-07-10 13:58:50 +02:00
|
|
|
ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create Printers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-02-28 06:26:08 +01:00
|
|
|
if(RegOpenKeyW(hkeyPrinters, name, &hkeyPrinter)
|
1999-07-10 13:58:50 +02:00
|
|
|
!= ERROR_SUCCESS) {
|
2001-02-28 06:26:08 +01:00
|
|
|
ERR("Can't find opened printer %s in registry\n", debugstr_w(name));
|
1999-07-10 13:58:50 +02:00
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
SetLastError(ERROR_INVALID_PRINTER_NAME); /* ? */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
size = sizeof(DriverName);
|
2001-10-28 22:16:38 +01:00
|
|
|
DriverName[0] = 0;
|
2000-05-26 01:02:46 +02:00
|
|
|
ret = RegQueryValueExW(hkeyPrinter, Printer_DriverW, 0, &type,
|
|
|
|
(LPBYTE)DriverName, &size);
|
1999-07-10 13:58:50 +02:00
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
RegCloseKey(hkeyPrinters);
|
|
|
|
if(ret != ERROR_SUCCESS) {
|
2001-02-28 06:26:08 +01:00
|
|
|
ERR("Can't get DriverName for printer %s\n", debugstr_w(name));
|
1999-07-10 13:58:50 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
2000-11-06 06:26:00 +01:00
|
|
|
|
|
|
|
hkeyDrivers = WINSPOOL_OpenDriverReg( pEnvironment, TRUE);
|
|
|
|
if(!hkeyDrivers) {
|
1999-07-10 13:58:50 +02:00
|
|
|
ERR("Can't create Drivers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-07-26 23:14:55 +02:00
|
|
|
size = di_sizeof[Level];
|
|
|
|
if ((size <= cbBuf) && pDriverInfo)
|
1999-07-10 13:58:50 +02:00
|
|
|
ptr = pDriverInfo + size;
|
|
|
|
|
2000-09-29 23:05:11 +02:00
|
|
|
if(!WINSPOOL_GetDriverInfoFromReg(hkeyDrivers, DriverName,
|
2007-07-26 23:14:55 +02:00
|
|
|
env, Level, pDriverInfo, ptr,
|
2000-09-29 23:05:11 +02:00
|
|
|
(cbBuf < size) ? 0 : cbBuf - size,
|
|
|
|
&needed, unicode)) {
|
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
return FALSE;
|
1999-07-10 13:58:50 +02:00
|
|
|
}
|
2000-09-29 23:05:11 +02:00
|
|
|
|
1999-07-10 13:58:50 +02:00
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
|
2000-11-12 04:39:53 +01:00
|
|
|
if(pcbNeeded) *pcbNeeded = size + needed;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("buffer space %d required %d\n", cbBuf, size + needed);
|
2000-09-29 23:05:11 +02:00
|
|
|
if(cbBuf >= needed) return TRUE;
|
1999-07-10 13:58:50 +02:00
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
1999-05-17 18:20:51 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-26 01:02:46 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetPrinterDriverA [WINSPOOL.@]
|
2000-05-26 01:02:46 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetPrinterDriverA(HANDLE hPrinter, LPSTR pEnvironment,
|
|
|
|
DWORD Level, LPBYTE pDriverInfo,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING pEnvW;
|
2003-02-12 02:19:25 +01:00
|
|
|
PWSTR pwstrEnvW;
|
|
|
|
|
|
|
|
pwstrEnvW = asciitounicode(&pEnvW, pEnvironment);
|
|
|
|
ret = WINSPOOL_GetPrinterDriver(hPrinter, pwstrEnvW, Level, pDriverInfo,
|
2000-05-26 01:02:46 +02:00
|
|
|
cbBuf, pcbNeeded, FALSE);
|
2003-01-24 00:07:38 +01:00
|
|
|
RtlFreeUnicodeString(&pEnvW);
|
2000-05-26 01:02:46 +02:00
|
|
|
return ret;
|
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* GetPrinterDriverW [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetPrinterDriverW(HANDLE hPrinter, LPWSTR pEnvironment,
|
2002-06-01 01:06:46 +02:00
|
|
|
DWORD Level, LPBYTE pDriverInfo,
|
1999-05-17 18:20:51 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
2000-05-26 01:02:46 +02:00
|
|
|
return WINSPOOL_GetPrinterDriver(hPrinter, pEnvironment, Level,
|
|
|
|
pDriverInfo, cbBuf, pcbNeeded, TRUE);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
1999-05-22 20:53:56 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2003-01-03 04:04:46 +01:00
|
|
|
* GetPrinterDriverDirectoryW [WINSPOOL.@]
|
2005-11-28 17:29:38 +01:00
|
|
|
*
|
|
|
|
* Return the PATH for the Printer-Drivers (UNICODE)
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername (NT only) or NULL (local Computer)
|
|
|
|
* pEnvironment [I] Printing-Environment (see below) or NULL (Default)
|
|
|
|
* Level [I] Structure-Level (must be 1)
|
|
|
|
* pDriverDirectory [O] PTR to Buffer that receives the Result
|
|
|
|
* cbBuf [I] Size of Buffer at pDriverDirectory
|
|
|
|
* pcbNeeded [O] PTR to DWORD that receives the size in Bytes used /
|
|
|
|
* required for pDriverDirectory
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE and in pcbNeeded the Bytes used in pDriverDirectory
|
|
|
|
* Failure: FALSE and in pcbNeeded the Bytes required for pDriverDirectory,
|
2005-12-02 16:15:09 +01:00
|
|
|
* if cbBuf is too small
|
2005-11-28 17:29:38 +01:00
|
|
|
*
|
|
|
|
* Native Values returned in pDriverDirectory on Success:
|
|
|
|
*| NT(Windows NT x86): "%winsysdir%\\spool\\DRIVERS\\w32x86"
|
|
|
|
*| NT(Windows 4.0): "%winsysdir%\\spool\\DRIVERS\\win40"
|
|
|
|
*| win9x(Windows 4.0): "%winsysdir%"
|
|
|
|
*
|
|
|
|
* "%winsysdir%" is the Value from GetSystemDirectoryW()
|
|
|
|
*
|
|
|
|
* FIXME
|
2006-02-01 12:32:10 +01:00
|
|
|
*- Only NULL or "" is supported for pName
|
2005-11-28 17:29:38 +01:00
|
|
|
*
|
1999-05-22 20:53:56 +02:00
|
|
|
*/
|
2003-01-03 04:04:46 +01:00
|
|
|
BOOL WINAPI GetPrinterDriverDirectoryW(LPWSTR pName, LPWSTR pEnvironment,
|
1999-05-22 20:53:56 +02:00
|
|
|
DWORD Level, LPBYTE pDriverDirectory,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
DWORD needed;
|
2006-01-18 12:26:32 +01:00
|
|
|
const printenv_t * env;
|
1999-05-22 20:53:56 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %s, %d, %p, %d, %p)\n", debugstr_w(pName),
|
2003-01-03 04:04:46 +01:00
|
|
|
debugstr_w(pEnvironment), Level, pDriverDirectory, cbBuf, pcbNeeded);
|
2006-02-01 12:32:10 +01:00
|
|
|
if(pName != NULL && pName[0]) {
|
2006-01-18 12:26:32 +01:00
|
|
|
FIXME("pName unsupported: %s\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
1999-05-22 20:53:56 +02:00
|
|
|
}
|
2006-01-18 12:26:32 +01:00
|
|
|
|
|
|
|
env = validate_envW(pEnvironment);
|
|
|
|
if(!env) return FALSE; /* pEnvironment invalid or unsupported */
|
|
|
|
|
|
|
|
if(Level != 1) {
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN("(Level: %d) is ignored in win9x\n", Level);
|
2006-01-18 12:26:32 +01:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
1999-05-22 20:53:56 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2006-01-18 12:26:32 +01:00
|
|
|
/* GetSystemDirectoryW returns number of WCHAR including the '\0' */
|
|
|
|
needed = GetSystemDirectoryW(NULL, 0);
|
|
|
|
/* add the Size for the Subdirectories */
|
|
|
|
needed += lstrlenW(spooldriversW);
|
|
|
|
needed += lstrlenW(env->subdir);
|
|
|
|
needed *= sizeof(WCHAR); /* return-value is size in Bytes */
|
2003-01-03 04:04:46 +01:00
|
|
|
|
1999-05-22 20:53:56 +02:00
|
|
|
if(pcbNeeded)
|
|
|
|
*pcbNeeded = needed;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("required: 0x%x/%d\n", needed, needed);
|
1999-05-22 20:53:56 +02:00
|
|
|
if(needed > cbBuf) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
2006-01-18 12:26:32 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(pcbNeeded == NULL) {
|
|
|
|
WARN("(pcbNeeded == NULL) is ignored in win9x\n");
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
1999-05-22 20:53:56 +02:00
|
|
|
}
|
2006-01-18 12:26:32 +01:00
|
|
|
if(pDriverDirectory == NULL) {
|
|
|
|
/* ERROR_INVALID_USER_BUFFER is NT, ERROR_INVALID_PARAMETER is win9x */
|
|
|
|
SetLastError(ERROR_INVALID_USER_BUFFER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetSystemDirectoryW((LPWSTR) pDriverDirectory, cbBuf/sizeof(WCHAR));
|
|
|
|
/* add the Subdirectories */
|
|
|
|
lstrcatW((LPWSTR) pDriverDirectory, spooldriversW);
|
|
|
|
lstrcatW((LPWSTR) pDriverDirectory, env->subdir);
|
|
|
|
TRACE(" => %s\n", debugstr_w((LPWSTR) pDriverDirectory));
|
1999-05-22 20:53:56 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2003-01-03 04:04:46 +01:00
|
|
|
* GetPrinterDriverDirectoryA [WINSPOOL.@]
|
2005-11-28 17:29:38 +01:00
|
|
|
*
|
|
|
|
* Return the PATH for the Printer-Drivers (ANSI)
|
|
|
|
*
|
|
|
|
* See GetPrinterDriverDirectoryW.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* On NT, pDriverDirectory need the same Size as the Unicode-Version
|
|
|
|
*
|
1999-05-22 20:53:56 +02:00
|
|
|
*/
|
2003-01-03 04:04:46 +01:00
|
|
|
BOOL WINAPI GetPrinterDriverDirectoryA(LPSTR pName, LPSTR pEnvironment,
|
1999-05-22 20:53:56 +02:00
|
|
|
DWORD Level, LPBYTE pDriverDirectory,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
|
|
|
{
|
2003-01-03 04:04:46 +01:00
|
|
|
UNICODE_STRING nameW, environmentW;
|
1999-05-22 20:53:56 +02:00
|
|
|
BOOL ret;
|
2003-01-03 04:04:46 +01:00
|
|
|
DWORD pcbNeededW;
|
|
|
|
INT len = cbBuf * sizeof(WCHAR)/sizeof(CHAR);
|
|
|
|
WCHAR *driverDirectoryW = NULL;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %s, %d, %p, %d, %p)\n", debugstr_a(pName),
|
2006-01-18 12:26:32 +01:00
|
|
|
debugstr_a(pEnvironment), Level, pDriverDirectory, cbBuf, pcbNeeded);
|
|
|
|
|
2003-01-03 04:04:46 +01:00
|
|
|
if (len) driverDirectoryW = HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
|
|
|
|
if(pName) RtlCreateUnicodeStringFromAsciiz(&nameW, pName);
|
|
|
|
else nameW.Buffer = NULL;
|
|
|
|
if(pEnvironment) RtlCreateUnicodeStringFromAsciiz(&environmentW, pEnvironment);
|
|
|
|
else environmentW.Buffer = NULL;
|
|
|
|
|
|
|
|
ret = GetPrinterDriverDirectoryW( nameW.Buffer, environmentW.Buffer, Level,
|
|
|
|
(LPBYTE)driverDirectoryW, len, &pcbNeededW );
|
|
|
|
if (ret) {
|
2003-01-15 01:51:16 +01:00
|
|
|
DWORD needed;
|
2006-01-18 12:26:32 +01:00
|
|
|
needed = WideCharToMultiByte( CP_ACP, 0, driverDirectoryW, -1,
|
2005-08-19 12:04:03 +02:00
|
|
|
(LPSTR)pDriverDirectory, cbBuf, NULL, NULL);
|
2003-01-08 20:52:25 +01:00
|
|
|
if(pcbNeeded)
|
2003-01-15 01:51:16 +01:00
|
|
|
*pcbNeeded = needed;
|
|
|
|
ret = (needed <= cbBuf) ? TRUE : FALSE;
|
2003-01-03 04:04:46 +01:00
|
|
|
} else
|
2003-01-08 20:52:25 +01:00
|
|
|
if(pcbNeeded) *pcbNeeded = pcbNeededW * sizeof(CHAR)/sizeof(WCHAR);
|
2003-01-03 04:04:46 +01:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("required: 0x%x/%d\n", pcbNeeded ? *pcbNeeded : 0, pcbNeeded ? *pcbNeeded : 0);
|
2003-01-03 04:04:46 +01:00
|
|
|
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, driverDirectoryW );
|
2003-01-03 04:04:46 +01:00
|
|
|
RtlFreeUnicodeString(&environmentW);
|
|
|
|
RtlFreeUnicodeString(&nameW);
|
1999-05-22 20:53:56 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* AddPrinterDriverA [WINSPOOL.@]
|
2007-08-24 00:02:11 +02:00
|
|
|
*
|
|
|
|
* See AddPrinterDriverW.
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
1999-05-22 20:53:56 +02:00
|
|
|
BOOL WINAPI AddPrinterDriverA(LPSTR pName, DWORD level, LPBYTE pDriverInfo)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2007-08-24 00:02:11 +02:00
|
|
|
TRACE("(%s, %d, %p)\n", debugstr_a(pName), level, pDriverInfo);
|
|
|
|
return AddPrinterDriverExA(pName, level, pDriverInfo, APD_COPY_NEW_FILES);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
|
2007-08-24 00:02:11 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* AddPrinterDriverW (WINSPOOL.@)
|
|
|
|
*
|
|
|
|
* Install a Printer Driver
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* level [I] Level for the supplied DRIVER_INFO_*W struct
|
|
|
|
* pDriverInfo [I] PTR to DRIVER_INFO_*W struct with the Driver Parameter
|
|
|
|
*
|
|
|
|
* RESULTS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
1999-05-17 18:20:51 +02:00
|
|
|
*/
|
2007-08-24 00:02:11 +02:00
|
|
|
BOOL WINAPI AddPrinterDriverW(LPWSTR pName, DWORD level, LPBYTE pDriverInfo)
|
1999-05-17 18:20:51 +02:00
|
|
|
{
|
2007-08-24 00:02:11 +02:00
|
|
|
TRACE("(%s, %d, %p)\n", debugstr_w(pName), level, pDriverInfo);
|
|
|
|
return AddPrinterDriverExW(pName, level, pDriverInfo, APD_COPY_NEW_FILES);
|
1999-05-17 18:20:51 +02:00
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* AddPrintProcessorA [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrintProcessorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPathName,
|
|
|
|
LPSTR pPrintProcessorName)
|
|
|
|
{
|
|
|
|
FIXME("(%s,%s,%s,%s): stub\n", debugstr_a(pName), debugstr_a(pEnvironment),
|
|
|
|
debugstr_a(pPathName), debugstr_a(pPrintProcessorName));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* AddPrintProcessorW [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrintProcessorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPathName,
|
|
|
|
LPWSTR pPrintProcessorName)
|
|
|
|
{
|
|
|
|
FIXME("(%s,%s,%s,%s): stub\n", debugstr_w(pName), debugstr_w(pEnvironment),
|
|
|
|
debugstr_w(pPathName), debugstr_w(pPrintProcessorName));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* AddPrintProvidorA [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrintProvidorA(LPSTR pName, DWORD Level, LPBYTE pProviderInfo)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%s,0x%08x,%p): stub\n", debugstr_a(pName), Level, pProviderInfo);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* AddPrintProvidorW [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrintProvidorW(LPWSTR pName, DWORD Level, LPBYTE pProviderInfo)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%s,0x%08x,%p): stub\n", debugstr_w(pName), Level, pProviderInfo);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* AdvancedDocumentPropertiesA [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
LONG WINAPI AdvancedDocumentPropertiesA(HWND hWnd, HANDLE hPrinter, LPSTR pDeviceName,
|
|
|
|
PDEVMODEA pDevModeOutput, PDEVMODEA pDevModeInput)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%p,%s,%p,%p): stub\n", hWnd, hPrinter, debugstr_a(pDeviceName),
|
|
|
|
pDevModeOutput, pDevModeInput);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* AdvancedDocumentPropertiesW [WINSPOOL.@]
|
|
|
|
*/
|
|
|
|
LONG WINAPI AdvancedDocumentPropertiesW(HWND hWnd, HANDLE hPrinter, LPWSTR pDeviceName,
|
|
|
|
PDEVMODEW pDevModeOutput, PDEVMODEW pDevModeInput)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%p,%s,%p,%p): stub\n", hWnd, hPrinter, debugstr_w(pDeviceName),
|
|
|
|
pDevModeOutput, pDevModeInput);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-17 18:20:51 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* PrinterProperties [WINSPOOL.@]
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
|
|
|
* Displays a dialog to set the properties of the printer.
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* RETURNS
|
2001-02-28 06:26:08 +01:00
|
|
|
* nonzero on success or zero on failure
|
1999-05-17 18:20:51 +02:00
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* implemented as stub only
|
|
|
|
*/
|
2000-12-02 00:58:28 +01:00
|
|
|
BOOL WINAPI PrinterProperties(HWND hWnd, /* [in] handle to parent window */
|
|
|
|
HANDLE hPrinter /* [in] handle to printer object */
|
1999-05-17 18:20:51 +02:00
|
|
|
){
|
2002-10-22 02:47:33 +02:00
|
|
|
FIXME("(%p,%p): stub\n", hWnd, hPrinter);
|
1999-05-17 18:20:51 +02:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-07-23 21:23:49 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumJobsA [WINSPOOL.@]
|
1999-07-23 21:23:49 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumJobsA(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs,
|
|
|
|
DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
LPDWORD pcReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,first=%d,no=%d,level=%d,job=%p,cb=%d,%p,%p), stub!\n",
|
2002-11-12 03:22:24 +01:00
|
|
|
hPrinter, FirstJob, NoJobs, Level, pJob, cbBuf, pcbNeeded, pcReturned
|
|
|
|
);
|
1999-07-23 21:23:49 +02:00
|
|
|
if(pcbNeeded) *pcbNeeded = 0;
|
|
|
|
if(pcReturned) *pcReturned = 0;
|
2002-11-12 03:22:24 +01:00
|
|
|
return FALSE;
|
1999-07-23 21:23:49 +02:00
|
|
|
}
|
|
|
|
|
1999-05-17 18:20:51 +02:00
|
|
|
|
1999-07-23 21:23:49 +02:00
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumJobsW [WINSPOOL.@]
|
1999-07-23 21:23:49 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumJobsW(HANDLE hPrinter, DWORD FirstJob, DWORD NoJobs,
|
|
|
|
DWORD Level, LPBYTE pJob, DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
LPDWORD pcReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("(%p,first=%d,no=%d,level=%d,job=%p,cb=%d,%p,%p), stub!\n",
|
2002-11-12 03:22:24 +01:00
|
|
|
hPrinter, FirstJob, NoJobs, Level, pJob, cbBuf, pcbNeeded, pcReturned
|
|
|
|
);
|
1999-07-23 21:23:49 +02:00
|
|
|
if(pcbNeeded) *pcbNeeded = 0;
|
|
|
|
if(pcReturned) *pcReturned = 0;
|
2002-11-12 03:22:24 +01:00
|
|
|
return FALSE;
|
1999-07-23 21:23:49 +02:00
|
|
|
}
|
2000-09-29 23:05:11 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* WINSPOOL_EnumPrinterDrivers [internal]
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Delivers information about all printer drivers installed on the
|
2000-09-29 23:05:11 +02:00
|
|
|
* localhost or a given server
|
|
|
|
*
|
|
|
|
* RETURNS
|
2001-02-28 06:26:08 +01:00
|
|
|
* nonzero on success or zero on failure. If the buffer for the returned
|
2000-09-29 23:05:11 +02:00
|
|
|
* information is too small the function will return an error
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* - only implemented for localhost, foreign hosts will return an error
|
|
|
|
*/
|
2007-02-18 11:51:09 +01:00
|
|
|
static BOOL WINSPOOL_EnumPrinterDrivers(LPWSTR pName, LPCWSTR pEnvironment,
|
2000-09-29 23:05:11 +02:00
|
|
|
DWORD Level, LPBYTE pDriverInfo,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded,
|
|
|
|
LPDWORD pcReturned, BOOL unicode)
|
|
|
|
|
|
|
|
{ HKEY hkeyDrivers;
|
|
|
|
DWORD i, needed, number = 0, size = 0;
|
|
|
|
WCHAR DriverNameW[255];
|
|
|
|
PBYTE ptr;
|
2007-07-22 17:21:25 +02:00
|
|
|
const printenv_t * env;
|
2000-09-29 23:05:11 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%s,%s,%d,%p,%d,%d\n",
|
2000-09-29 23:05:11 +02:00
|
|
|
debugstr_w(pName), debugstr_w(pEnvironment),
|
|
|
|
Level, pDriverInfo, cbBuf, unicode);
|
|
|
|
|
|
|
|
/* check for local drivers */
|
2006-05-20 18:39:20 +02:00
|
|
|
if((pName) && (pName[0])) {
|
|
|
|
FIXME("remote drivers (%s) not supported!\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
2000-09-29 23:05:11 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-07-22 17:21:25 +02:00
|
|
|
env = validate_envW(pEnvironment);
|
|
|
|
if (!env) return FALSE; /* SetLastError() is in validate_envW */
|
|
|
|
|
2000-09-29 23:05:11 +02:00
|
|
|
/* check input parameter */
|
2007-07-26 23:14:55 +02:00
|
|
|
if ((Level < 1) || (Level == 7) || (Level > 8)) {
|
2004-11-24 19:11:28 +01:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
2000-09-29 23:05:11 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-08-10 10:47:36 +02:00
|
|
|
if ((pcbNeeded == NULL) || (pcReturned == NULL)) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-09-29 23:05:11 +02:00
|
|
|
/* initialize return values */
|
|
|
|
if(pDriverInfo)
|
|
|
|
memset( pDriverInfo, 0, cbBuf);
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
*pcReturned = 0;
|
|
|
|
|
2000-11-06 06:26:00 +01:00
|
|
|
hkeyDrivers = WINSPOOL_OpenDriverReg(pEnvironment, TRUE);
|
|
|
|
if(!hkeyDrivers) {
|
2000-09-29 23:05:11 +02:00
|
|
|
ERR("Can't open Drivers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(RegQueryInfoKeyA(hkeyDrivers, NULL, NULL, NULL, &number, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL) != ERROR_SUCCESS) {
|
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
ERR("Can't query Drivers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("Found %d Drivers\n", number);
|
2000-09-29 23:05:11 +02:00
|
|
|
|
|
|
|
/* get size of single struct
|
|
|
|
* unicode and ascii structure have the same size
|
|
|
|
*/
|
2007-07-26 23:14:55 +02:00
|
|
|
size = di_sizeof[Level];
|
2000-09-29 23:05:11 +02:00
|
|
|
|
|
|
|
/* calculate required buffer size */
|
|
|
|
*pcbNeeded = size * number;
|
|
|
|
|
|
|
|
for( i = 0, ptr = (pDriverInfo && (cbBuf >= size)) ? pDriverInfo : NULL ;
|
|
|
|
i < number;
|
|
|
|
i++, ptr = (ptr && (cbBuf >= size * i)) ? ptr + size : NULL) {
|
2007-12-01 17:43:37 +01:00
|
|
|
if(RegEnumKeyW(hkeyDrivers, i, DriverNameW, sizeof(DriverNameW)/sizeof(DriverNameW[0]))
|
2000-09-29 23:05:11 +02:00
|
|
|
!= ERROR_SUCCESS) {
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR("Can't enum key number %d\n", i);
|
2000-09-29 23:05:11 +02:00
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if(!WINSPOOL_GetDriverInfoFromReg(hkeyDrivers, DriverNameW,
|
2007-07-22 17:21:25 +02:00
|
|
|
env, Level, ptr,
|
2000-09-29 23:05:11 +02:00
|
|
|
(cbBuf < *pcbNeeded) ? NULL : pDriverInfo + *pcbNeeded,
|
|
|
|
(cbBuf < *pcbNeeded) ? 0 : cbBuf - *pcbNeeded,
|
|
|
|
&needed, unicode)) {
|
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
(*pcbNeeded) += needed;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(hkeyDrivers);
|
|
|
|
|
|
|
|
if(cbBuf < *pcbNeeded){
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-09-13 12:32:33 +02:00
|
|
|
*pcReturned = number;
|
2000-09-29 23:05:11 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrinterDriversW [WINSPOOL.@]
|
2000-09-29 23:05:11 +02:00
|
|
|
*
|
|
|
|
* see function EnumPrinterDrivers for RETURNS, BUGS
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrinterDriversW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level,
|
|
|
|
LPBYTE pDriverInfo, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{
|
|
|
|
return WINSPOOL_EnumPrinterDrivers(pName, pEnvironment, Level, pDriverInfo,
|
|
|
|
cbBuf, pcbNeeded, pcReturned, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrinterDriversA [WINSPOOL.@]
|
2000-09-29 23:05:11 +02:00
|
|
|
*
|
|
|
|
* see function EnumPrinterDrivers for RETURNS, BUGS
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrinterDriversA(LPSTR pName, LPSTR pEnvironment, DWORD Level,
|
|
|
|
LPBYTE pDriverInfo, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{ BOOL ret;
|
2003-01-24 00:07:38 +01:00
|
|
|
UNICODE_STRING pNameW, pEnvironmentW;
|
2003-02-12 02:19:25 +01:00
|
|
|
PWSTR pwstrNameW, pwstrEnvironmentW;
|
2003-01-24 00:07:38 +01:00
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
pwstrNameW = asciitounicode(&pNameW, pName);
|
|
|
|
pwstrEnvironmentW = asciitounicode(&pEnvironmentW, pEnvironment);
|
2000-09-29 23:05:11 +02:00
|
|
|
|
2003-02-12 02:19:25 +01:00
|
|
|
ret = WINSPOOL_EnumPrinterDrivers(pwstrNameW, pwstrEnvironmentW,
|
2003-01-24 00:07:38 +01:00
|
|
|
Level, pDriverInfo, cbBuf, pcbNeeded,
|
|
|
|
pcReturned, FALSE);
|
2003-02-12 02:19:25 +01:00
|
|
|
RtlFreeUnicodeString(&pNameW);
|
|
|
|
RtlFreeUnicodeString(&pEnvironmentW);
|
2000-09-29 23:05:11 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2000-11-28 23:33:46 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPortsA (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* See EnumPortsW.
|
|
|
|
*
|
2000-11-28 23:33:46 +01:00
|
|
|
*/
|
2006-11-04 00:27:31 +01:00
|
|
|
BOOL WINAPI EnumPortsA( LPSTR pName, DWORD Level, LPBYTE pPorts, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, LPDWORD pcReturned)
|
2000-11-28 23:33:46 +01:00
|
|
|
{
|
2006-11-04 00:27:31 +01:00
|
|
|
BOOL res;
|
|
|
|
LPBYTE bufferW = NULL;
|
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
DWORD needed = 0;
|
|
|
|
DWORD numentries = 0;
|
|
|
|
INT len;
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
TRACE("(%s, %d, %p, %d, %p, %p)\n", debugstr_a(pName), Level, pPorts,
|
|
|
|
cbBuf, pcbNeeded, pcReturned);
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
/* convert servername to unicode */
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
2003-05-20 01:19:21 +02:00
|
|
|
}
|
2006-11-04 00:27:31 +01:00
|
|
|
/* alloc (userbuffersize*sizeof(WCHAR) and try to enum the Ports */
|
|
|
|
needed = cbBuf * sizeof(WCHAR);
|
|
|
|
if (needed) bufferW = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
res = EnumPortsW(nameW, Level, bufferW, needed, pcbNeeded, pcReturned);
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
if(!res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER)) {
|
|
|
|
if (pcbNeeded) needed = *pcbNeeded;
|
|
|
|
/* HeapReAlloc return NULL, when bufferW was NULL */
|
|
|
|
bufferW = (bufferW) ? HeapReAlloc(GetProcessHeap(), 0, bufferW, needed) :
|
|
|
|
HeapAlloc(GetProcessHeap(), 0, needed);
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
/* Try again with the large Buffer */
|
|
|
|
res = EnumPortsW(nameW, Level, bufferW, needed, pcbNeeded, pcReturned);
|
2003-05-20 01:19:21 +02:00
|
|
|
}
|
2006-11-04 00:27:31 +01:00
|
|
|
needed = pcbNeeded ? *pcbNeeded : 0;
|
|
|
|
numentries = pcReturned ? *pcReturned : 0;
|
2004-10-18 21:38:57 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
/*
|
|
|
|
W2k require the buffersize from EnumPortsW also for EnumPortsA.
|
|
|
|
We use the smaller Ansi-Size to avoid conflicts with fixed Buffers of old Apps.
|
|
|
|
*/
|
|
|
|
if (res) {
|
2007-01-18 11:35:50 +01:00
|
|
|
/* EnumPortsW collected all Data. Parse them to calculate ANSI-Size */
|
2006-11-04 00:27:31 +01:00
|
|
|
DWORD entrysize = 0;
|
|
|
|
DWORD index;
|
|
|
|
LPSTR ptr;
|
|
|
|
LPPORT_INFO_2W pi2w;
|
|
|
|
LPPORT_INFO_2A pi2a;
|
|
|
|
|
|
|
|
needed = 0;
|
|
|
|
entrysize = (Level == 1) ? sizeof(PORT_INFO_1A) : sizeof(PORT_INFO_2A);
|
|
|
|
|
|
|
|
/* First pass: calculate the size for all Entries */
|
|
|
|
pi2w = (LPPORT_INFO_2W) bufferW;
|
|
|
|
pi2a = (LPPORT_INFO_2A) pPorts;
|
|
|
|
index = 0;
|
|
|
|
while (index < numentries) {
|
|
|
|
index++;
|
|
|
|
needed += entrysize; /* PORT_INFO_?A */
|
|
|
|
TRACE("%p: parsing #%d (%s)\n", pi2w, index, debugstr_w(pi2w->pPortName));
|
|
|
|
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, pi2w->pPortName, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
if (Level > 1) {
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, pi2w->pMonitorName, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, pi2w->pDescription, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
}
|
|
|
|
/* use LPBYTE with entrysize to avoid double code (PORT_INFO_1 + PORT_INFO_2) */
|
|
|
|
pi2w = (LPPORT_INFO_2W) (((LPBYTE)pi2w) + entrysize);
|
|
|
|
pi2a = (LPPORT_INFO_2A) (((LPBYTE)pi2a) + entrysize);
|
2004-10-04 22:40:44 +02:00
|
|
|
}
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
/* check for errors and quit on failure */
|
|
|
|
if (cbBuf < needed) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
res = FALSE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
len = entrysize * numentries; /* room for all PORT_INFO_?A */
|
|
|
|
ptr = (LPSTR) &pPorts[len]; /* room for strings */
|
|
|
|
cbBuf -= len ; /* free Bytes in the user-Buffer */
|
|
|
|
pi2w = (LPPORT_INFO_2W) bufferW;
|
|
|
|
pi2a = (LPPORT_INFO_2A) pPorts;
|
|
|
|
index = 0;
|
|
|
|
/* Second Pass: Fill the User Buffer (if we have one) */
|
|
|
|
while ((index < numentries) && pPorts) {
|
|
|
|
index++;
|
|
|
|
TRACE("%p: writing PORT_INFO_%dA #%d\n", pi2a, Level, index);
|
|
|
|
pi2a->pPortName = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, pi2w->pPortName, -1,
|
|
|
|
ptr, cbBuf , NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
if (Level > 1) {
|
|
|
|
pi2a->pMonitorName = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, pi2w->pMonitorName, -1,
|
|
|
|
ptr, cbBuf, NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
|
|
|
|
pi2a->pDescription = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, pi2w->pDescription, -1,
|
|
|
|
ptr, cbBuf, NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
|
|
|
|
pi2a->fPortType = pi2w->fPortType;
|
|
|
|
pi2a->Reserved = 0; /* documented: "must be zero" */
|
|
|
|
|
2003-05-20 01:19:21 +02:00
|
|
|
}
|
2006-11-04 00:27:31 +01:00
|
|
|
/* use LPBYTE with entrysize to avoid double code (PORT_INFO_1 + PORT_INFO_2) */
|
|
|
|
pi2w = (LPPORT_INFO_2W) (((LPBYTE)pi2w) + entrysize);
|
|
|
|
pi2a = (LPPORT_INFO_2A) (((LPBYTE)pi2a) + entrysize);
|
2004-10-18 21:38:57 +02:00
|
|
|
}
|
2003-05-20 01:19:21 +02:00
|
|
|
}
|
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
cleanup:
|
|
|
|
if (pcbNeeded) *pcbNeeded = needed;
|
|
|
|
if (pcReturned) *pcReturned = (res) ? numentries : 0;
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, bufferW);
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2006-11-04 00:27:31 +01:00
|
|
|
TRACE("returning %d with %d (%d byte for %d of %d entries)\n",
|
|
|
|
(res), GetLastError(), needed, (res)? numentries : 0, numentries);
|
|
|
|
|
|
|
|
return (res);
|
2003-05-20 01:19:21 +02:00
|
|
|
|
2000-11-28 23:33:46 +01:00
|
|
|
}
|
2001-02-12 02:26:47 +01:00
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* EnumPortsW (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* Enumerate available Ports
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* name [I] Servername or NULL (local Computer)
|
|
|
|
* level [I] Structure-Level (1 or 2)
|
|
|
|
* buffer [O] PTR to Buffer that receives the Result
|
|
|
|
* bufsize [I] Size of Buffer at buffer
|
|
|
|
* bufneeded [O] PTR to DWORD that receives the size in Bytes used / required for buffer
|
|
|
|
* bufreturned [O] PTR to DWORD that receives the number of Ports in buffer
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE and in bufneeded the Bytes required for buffer, if bufsize is too small
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
2006-11-04 00:27:16 +01:00
|
|
|
|
|
|
|
BOOL WINAPI EnumPortsW(LPWSTR pName, DWORD Level, LPBYTE pPorts, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2006-11-04 00:27:16 +01:00
|
|
|
DWORD needed = 0;
|
|
|
|
DWORD numentries = 0;
|
|
|
|
BOOL res = FALSE;
|
|
|
|
|
|
|
|
TRACE("(%s, %d, %p, %d, %p, %p)\n", debugstr_w(pName), Level, pPorts,
|
|
|
|
cbBuf, pcbNeeded, pcReturned);
|
|
|
|
|
|
|
|
if (pName && (pName[0])) {
|
|
|
|
FIXME("not implemented for Server %s\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
|
|
|
goto emP_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Level is not checked in win9x */
|
|
|
|
if (!Level || (Level > 2)) {
|
|
|
|
WARN("level (%d) is ignored in win9x\n", Level);
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
goto emP_cleanup;
|
|
|
|
}
|
|
|
|
if (!pcbNeeded) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
goto emP_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
EnterCriticalSection(&monitor_handles_cs);
|
|
|
|
monitor_loadall();
|
|
|
|
|
|
|
|
/* Scan all local Ports */
|
|
|
|
numentries = 0;
|
|
|
|
needed = get_ports_from_all_monitors(Level, NULL, 0, &numentries);
|
|
|
|
|
|
|
|
/* we calculated the needed buffersize. now do the error-checks */
|
|
|
|
if (cbBuf < needed) {
|
|
|
|
monitor_unloadall();
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
goto emP_cleanup_cs;
|
|
|
|
}
|
|
|
|
else if (!pPorts || !pcReturned) {
|
|
|
|
monitor_unloadall();
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
goto emP_cleanup_cs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill the Buffer */
|
|
|
|
needed = get_ports_from_all_monitors(Level, pPorts, cbBuf, &numentries);
|
|
|
|
res = TRUE;
|
|
|
|
monitor_unloadall();
|
|
|
|
|
|
|
|
emP_cleanup_cs:
|
|
|
|
LeaveCriticalSection(&monitor_handles_cs);
|
|
|
|
|
|
|
|
emP_cleanup:
|
|
|
|
if (pcbNeeded) *pcbNeeded = needed;
|
|
|
|
if (pcReturned) *pcReturned = (res) ? numentries : 0;
|
|
|
|
|
|
|
|
TRACE("returning %d with %d (%d byte for %d of %d entries)\n",
|
|
|
|
(res), GetLastError(), needed, (res)? numentries : 0, numentries);
|
|
|
|
|
|
|
|
return (res);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
2004-03-07 04:46:54 +01:00
|
|
|
|
2002-01-22 01:49:24 +01:00
|
|
|
/******************************************************************************
|
2004-03-07 04:46:54 +01:00
|
|
|
* GetDefaultPrinterW (WINSPOOL.@)
|
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
* This function must read the value from data 'device' of key
|
|
|
|
* HCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows
|
2002-01-22 01:49:24 +01:00
|
|
|
*/
|
2004-03-07 04:46:54 +01:00
|
|
|
BOOL WINAPI GetDefaultPrinterW(LPWSTR name, LPDWORD namesize)
|
2002-01-22 01:49:24 +01:00
|
|
|
{
|
2004-03-07 04:46:54 +01:00
|
|
|
BOOL retval = TRUE;
|
|
|
|
DWORD insize, len;
|
|
|
|
WCHAR *buffer, *ptr;
|
2002-01-22 01:49:24 +01:00
|
|
|
|
2004-03-07 04:46:54 +01:00
|
|
|
if (!namesize)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-01-22 01:49:24 +01:00
|
|
|
|
2004-03-07 04:46:54 +01:00
|
|
|
/* make the buffer big enough for the stuff from the profile/registry,
|
|
|
|
* the content must fit into the local buffer to compute the correct
|
2005-05-06 17:44:31 +02:00
|
|
|
* size even if the extern buffer is too small or not given.
|
2004-03-07 04:46:54 +01:00
|
|
|
* (20 for ,driver,port) */
|
|
|
|
insize = *namesize;
|
|
|
|
len = max(100, (insize + 20));
|
|
|
|
buffer = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR));
|
2002-01-22 01:49:24 +01:00
|
|
|
|
2004-03-07 04:46:54 +01:00
|
|
|
if (!GetProfileStringW(windowsW, deviceW, emptyStringW, buffer, len))
|
|
|
|
{
|
|
|
|
SetLastError (ERROR_FILE_NOT_FOUND);
|
|
|
|
retval = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
TRACE("%s\n", debugstr_w(buffer));
|
|
|
|
|
|
|
|
if ((ptr = strchrW(buffer, ',')) == NULL)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_NAME);
|
|
|
|
retval = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
2002-01-22 01:49:24 +01:00
|
|
|
|
2004-03-07 04:46:54 +01:00
|
|
|
*ptr = 0;
|
|
|
|
*namesize = strlenW(buffer) + 1;
|
|
|
|
if(!name || (*namesize > insize))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
retval = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
strcpyW(name, buffer);
|
|
|
|
|
|
|
|
end:
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, buffer);
|
2004-03-07 04:46:54 +01:00
|
|
|
return retval;
|
2002-01-22 01:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
2004-03-07 04:46:54 +01:00
|
|
|
* GetDefaultPrinterA (WINSPOOL.@)
|
2002-01-22 01:49:24 +01:00
|
|
|
*/
|
2004-03-07 04:46:54 +01:00
|
|
|
BOOL WINAPI GetDefaultPrinterA(LPSTR name, LPDWORD namesize)
|
2002-01-22 01:49:24 +01:00
|
|
|
{
|
2004-03-07 04:46:54 +01:00
|
|
|
BOOL retval = TRUE;
|
|
|
|
DWORD insize = 0;
|
|
|
|
WCHAR *bufferW = NULL;
|
|
|
|
|
|
|
|
if (!namesize)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(name && *namesize) {
|
|
|
|
insize = *namesize;
|
|
|
|
bufferW = HeapAlloc( GetProcessHeap(), 0, insize * sizeof(WCHAR));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!GetDefaultPrinterW( bufferW, namesize)) {
|
|
|
|
retval = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
*namesize = WideCharToMultiByte(CP_ACP, 0, bufferW, -1, name, insize,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!*namesize)
|
|
|
|
{
|
|
|
|
*namesize = WideCharToMultiByte(CP_ACP, 0, bufferW, -1, NULL, 0, NULL, NULL);
|
|
|
|
retval = FALSE;
|
|
|
|
}
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("0x%08x/0x%08x:%s\n", *namesize, insize, debugstr_w(bufferW));
|
2004-03-07 04:46:54 +01:00
|
|
|
|
|
|
|
end:
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, bufferW);
|
2004-03-07 04:46:54 +01:00
|
|
|
return retval;
|
2002-01-22 01:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-20 11:51:04 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* SetDefaultPrinterW (WINSPOOL.204)
|
|
|
|
*
|
|
|
|
* Set the Name of the Default Printer
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pszPrinter [I] Name of the Printer or NULL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: True
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* When the Parameter is NULL or points to an Empty String and
|
|
|
|
* a Default Printer was already present, then this Function changes nothing.
|
|
|
|
* Without a Default Printer and NULL (or an Empty String) as Parameter,
|
|
|
|
* the First enumerated local Printer is used.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetDefaultPrinterW(LPCWSTR pszPrinter)
|
|
|
|
{
|
|
|
|
|
|
|
|
TRACE("(%s)\n", debugstr_w(pszPrinter));
|
|
|
|
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* SetDefaultPrinterA (WINSPOOL.202)
|
|
|
|
*
|
|
|
|
* See SetDefaultPrinterW.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetDefaultPrinterA(LPCSTR pszPrinter)
|
|
|
|
{
|
|
|
|
|
|
|
|
TRACE("(%s)\n", debugstr_a(pszPrinter));
|
|
|
|
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-12 02:26:47 +01:00
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* SetPrinterDataExA (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
2003-11-11 21:38:51 +01:00
|
|
|
DWORD WINAPI SetPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
|
|
|
|
LPCSTR pValueName, DWORD Type,
|
2001-02-12 02:26:47 +01:00
|
|
|
LPBYTE pData, DWORD cbData)
|
|
|
|
{
|
|
|
|
HKEY hkeyPrinter, hkeySubkey;
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %s, %s %08x, %p, %08x)\n", hPrinter, debugstr_a(pKeyName),
|
2001-02-12 02:26:47 +01:00
|
|
|
debugstr_a(pValueName), Type, pData, cbData);
|
|
|
|
|
|
|
|
if((ret = WINSPOOL_GetOpenedPrinterRegKey(hPrinter, &hkeyPrinter))
|
|
|
|
!= ERROR_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if((ret = RegCreateKeyA(hkeyPrinter, pKeyName, &hkeySubkey))
|
|
|
|
!= ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create subkey %s\n", debugstr_a(pKeyName));
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = RegSetValueExA(hkeySubkey, pValueName, 0, Type, pData, cbData);
|
|
|
|
RegCloseKey(hkeySubkey);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* SetPrinterDataExW (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
2003-11-11 21:38:51 +01:00
|
|
|
DWORD WINAPI SetPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName,
|
|
|
|
LPCWSTR pValueName, DWORD Type,
|
2001-02-12 02:26:47 +01:00
|
|
|
LPBYTE pData, DWORD cbData)
|
|
|
|
{
|
|
|
|
HKEY hkeyPrinter, hkeySubkey;
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %s, %s %08x, %p, %08x)\n", hPrinter, debugstr_w(pKeyName),
|
2001-02-12 02:26:47 +01:00
|
|
|
debugstr_w(pValueName), Type, pData, cbData);
|
|
|
|
|
|
|
|
if((ret = WINSPOOL_GetOpenedPrinterRegKey(hPrinter, &hkeyPrinter))
|
|
|
|
!= ERROR_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if((ret = RegCreateKeyW(hkeyPrinter, pKeyName, &hkeySubkey))
|
|
|
|
!= ERROR_SUCCESS) {
|
|
|
|
ERR("Can't create subkey %s\n", debugstr_w(pKeyName));
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = RegSetValueExW(hkeySubkey, pValueName, 0, Type, pData, cbData);
|
|
|
|
RegCloseKey(hkeySubkey);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* SetPrinterDataA (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, DWORD Type,
|
|
|
|
LPBYTE pData, DWORD cbData)
|
|
|
|
{
|
|
|
|
return SetPrinterDataExA(hPrinter, "PrinterDriverData", pValueName, Type,
|
|
|
|
pData, cbData);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* SetPrinterDataW (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, DWORD Type,
|
|
|
|
LPBYTE pData, DWORD cbData)
|
|
|
|
{
|
|
|
|
return SetPrinterDataExW(hPrinter, PrinterDriverDataW, pValueName, Type,
|
|
|
|
pData, cbData);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* GetPrinterDataExA (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
2003-11-11 21:38:51 +01:00
|
|
|
DWORD WINAPI GetPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
|
|
|
|
LPCSTR pValueName, LPDWORD pType,
|
2001-02-12 02:26:47 +01:00
|
|
|
LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
HKEY hkeyPrinter, hkeySubkey;
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %s, %s %p, %p, %08x, %p)\n", hPrinter,
|
2001-02-12 02:26:47 +01:00
|
|
|
debugstr_a(pKeyName), debugstr_a(pValueName), pType, pData, nSize,
|
|
|
|
pcbNeeded);
|
|
|
|
|
|
|
|
if((ret = WINSPOOL_GetOpenedPrinterRegKey(hPrinter, &hkeyPrinter))
|
|
|
|
!= ERROR_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if((ret = RegOpenKeyA(hkeyPrinter, pKeyName, &hkeySubkey))
|
|
|
|
!= ERROR_SUCCESS) {
|
|
|
|
WARN("Can't open subkey %s\n", debugstr_a(pKeyName));
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
*pcbNeeded = nSize;
|
|
|
|
ret = RegQueryValueExA(hkeySubkey, pValueName, 0, pType, pData, pcbNeeded);
|
|
|
|
RegCloseKey(hkeySubkey);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* GetPrinterDataExW (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
2003-11-11 21:38:51 +01:00
|
|
|
DWORD WINAPI GetPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName,
|
|
|
|
LPCWSTR pValueName, LPDWORD pType,
|
2001-02-12 02:26:47 +01:00
|
|
|
LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
HKEY hkeyPrinter, hkeySubkey;
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %s, %s %p, %p, %08x, %p)\n", hPrinter,
|
2001-02-12 02:26:47 +01:00
|
|
|
debugstr_w(pKeyName), debugstr_w(pValueName), pType, pData, nSize,
|
|
|
|
pcbNeeded);
|
|
|
|
|
|
|
|
if((ret = WINSPOOL_GetOpenedPrinterRegKey(hPrinter, &hkeyPrinter))
|
|
|
|
!= ERROR_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if((ret = RegOpenKeyW(hkeyPrinter, pKeyName, &hkeySubkey))
|
|
|
|
!= ERROR_SUCCESS) {
|
|
|
|
WARN("Can't open subkey %s\n", debugstr_w(pKeyName));
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
*pcbNeeded = nSize;
|
|
|
|
ret = RegQueryValueExW(hkeySubkey, pValueName, 0, pType, pData, pcbNeeded);
|
|
|
|
RegCloseKey(hkeySubkey);
|
|
|
|
RegCloseKey(hkeyPrinter);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* GetPrinterDataA (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetPrinterDataA(HANDLE hPrinter, LPSTR pValueName, LPDWORD pType,
|
|
|
|
LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
return GetPrinterDataExA(hPrinter, "PrinterDriverData", pValueName, pType,
|
|
|
|
pData, nSize, pcbNeeded);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* GetPrinterDataW (WINSPOOL.@)
|
2001-02-12 02:26:47 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetPrinterDataW(HANDLE hPrinter, LPWSTR pValueName, LPDWORD pType,
|
|
|
|
LPBYTE pData, DWORD nSize, LPDWORD pcbNeeded)
|
|
|
|
{
|
|
|
|
return GetPrinterDataExW(hPrinter, PrinterDriverDataW, pValueName, pType,
|
|
|
|
pData, nSize, pcbNeeded);
|
|
|
|
}
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
/*******************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrinterDataExW [WINSPOOL.@]
|
2001-02-21 05:00:40 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI EnumPrinterDataExW(HANDLE hPrinter, LPCWSTR pKeyName,
|
|
|
|
LPBYTE pEnumValues, DWORD cbEnumValues,
|
|
|
|
LPDWORD pcbEnumValues, LPDWORD pnEnumValues)
|
|
|
|
{
|
|
|
|
HKEY hkPrinter, hkSubKey;
|
|
|
|
DWORD r, ret, dwIndex, cValues, cbMaxValueNameLen,
|
|
|
|
cbValueNameLen, cbMaxValueLen, cbValueLen,
|
|
|
|
cbBufSize, dwType;
|
|
|
|
LPWSTR lpValueName;
|
|
|
|
HANDLE hHeap;
|
|
|
|
PBYTE lpValue;
|
|
|
|
PPRINTER_ENUM_VALUESW ppev;
|
|
|
|
|
2002-10-22 02:47:33 +02:00
|
|
|
TRACE ("%p %s\n", hPrinter, debugstr_w (pKeyName));
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
if (pKeyName == NULL || *pKeyName == 0)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
ret = WINSPOOL_GetOpenedPrinterRegKey (hPrinter, &hkPrinter);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("WINSPOOL_GetOpenedPrinterRegKey (%p) returned %i\n",
|
2001-02-21 05:00:40 +01:00
|
|
|
hPrinter, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = RegOpenKeyExW (hkPrinter, pKeyName, 0, KEY_READ, &hkSubKey);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
r = RegCloseKey (hkPrinter);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
|
|
|
TRACE ("RegOpenKeyExW (%p, %s) returned %i\n", hPrinter,
|
2001-02-21 05:00:40 +01:00
|
|
|
debugstr_w (pKeyName), ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = RegCloseKey (hkPrinter);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("RegCloseKey returned %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = RegQueryInfoKeyW (hkSubKey, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
&cValues, &cbMaxValueNameLen, &cbMaxValueLen, NULL, NULL);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
|
|
|
TRACE ("RegQueryInfoKeyW (%p) returned %i\n", hkSubKey, ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("RegQueryInfoKeyW returned cValues = %i, cbMaxValueNameLen = %i, "
|
|
|
|
"cbMaxValueLen = %i\n", cValues, cbMaxValueNameLen, cbMaxValueLen);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
if (cValues == 0) /* empty key */
|
|
|
|
{
|
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
*pcbEnumValues = *pnEnumValues = 0;
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
++cbMaxValueNameLen; /* allow for trailing '\0' */
|
|
|
|
|
|
|
|
hHeap = GetProcessHeap ();
|
2003-01-15 00:43:41 +01:00
|
|
|
if (hHeap == NULL)
|
2001-02-21 05:00:40 +01:00
|
|
|
{
|
|
|
|
ERR ("GetProcessHeap failed\n");
|
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpValueName = HeapAlloc (hHeap, 0, cbMaxValueNameLen * sizeof (WCHAR));
|
|
|
|
if (lpValueName == NULL)
|
|
|
|
{
|
2006-10-20 12:16:45 +02:00
|
|
|
ERR ("Failed to allocate %i WCHARs from process heap\n", cbMaxValueNameLen);
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpValue = HeapAlloc (hHeap, 0, cbMaxValueLen);
|
|
|
|
if (lpValue == NULL)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("Failed to allocate %i bytes from process heap\n", cbMaxValueLen);
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE ("pass 1: calculating buffer required for all names and values\n");
|
|
|
|
|
|
|
|
cbBufSize = cValues * sizeof (PRINTER_ENUM_VALUESW);
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("%i bytes required for %i headers\n", cbBufSize, cValues);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
for (dwIndex = 0; dwIndex < cValues; ++dwIndex)
|
|
|
|
{
|
|
|
|
cbValueNameLen = cbMaxValueNameLen; cbValueLen = cbMaxValueLen;
|
|
|
|
ret = RegEnumValueW (hkSubKey, dwIndex, lpValueName, &cbValueNameLen,
|
|
|
|
NULL, NULL, lpValue, &cbValueLen);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (HeapFree (hHeap, 0, lpValue) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
|
|
|
TRACE ("RegEnumValueW (%i) returned %i\n", dwIndex, ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-10-20 12:16:45 +02:00
|
|
|
TRACE ("%s [%i]: name needs %i WCHARs, data needs %i bytes\n",
|
2001-02-21 05:00:40 +01:00
|
|
|
debugstr_w (lpValueName), dwIndex,
|
2006-10-20 12:16:45 +02:00
|
|
|
cbValueNameLen + 1, cbValueLen);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
cbBufSize += (cbValueNameLen + 1) * sizeof (WCHAR);
|
|
|
|
cbBufSize += cbValueLen;
|
|
|
|
}
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("%i bytes required for all %i values\n", cbBufSize, cValues);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
*pcbEnumValues = cbBufSize;
|
|
|
|
*pnEnumValues = cValues;
|
|
|
|
|
|
|
|
if (cbEnumValues < cbBufSize) /* buffer too small */
|
|
|
|
{
|
|
|
|
if (HeapFree (hHeap, 0, lpValue) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
|
|
|
TRACE ("%i byte buffer is not large enough\n", cbEnumValues);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_MORE_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE ("pass 2: copying all names and values to buffer\n");
|
|
|
|
|
|
|
|
ppev = (PPRINTER_ENUM_VALUESW) pEnumValues; /* array of structs */
|
|
|
|
pEnumValues += cValues * sizeof (PRINTER_ENUM_VALUESW);
|
|
|
|
|
|
|
|
for (dwIndex = 0; dwIndex < cValues; ++dwIndex)
|
|
|
|
{
|
|
|
|
cbValueNameLen = cbMaxValueNameLen; cbValueLen = cbMaxValueLen;
|
|
|
|
ret = RegEnumValueW (hkSubKey, dwIndex, lpValueName, &cbValueNameLen,
|
|
|
|
NULL, &dwType, lpValue, &cbValueLen);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (HeapFree (hHeap, 0, lpValue) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
|
|
|
TRACE ("RegEnumValueW (%i) returned %i\n", dwIndex, ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
cbValueNameLen = (cbValueNameLen + 1) * sizeof (WCHAR);
|
|
|
|
memcpy (pEnumValues, lpValueName, cbValueNameLen);
|
|
|
|
ppev[dwIndex].pValueName = (LPWSTR) pEnumValues;
|
|
|
|
pEnumValues += cbValueNameLen;
|
|
|
|
|
|
|
|
/* return # of *bytes* (including trailing \0), not # of chars */
|
|
|
|
ppev[dwIndex].cbValueName = cbValueNameLen;
|
|
|
|
|
|
|
|
ppev[dwIndex].dwType = dwType;
|
|
|
|
|
|
|
|
memcpy (pEnumValues, lpValue, cbValueLen);
|
|
|
|
ppev[dwIndex].pData = pEnumValues;
|
|
|
|
pEnumValues += cbValueLen;
|
|
|
|
|
|
|
|
ppev[dwIndex].cbData = cbValueLen;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("%s [%i]: copied name (%i bytes) and data (%i bytes)\n",
|
2001-02-21 05:00:40 +01:00
|
|
|
debugstr_w (lpValueName), dwIndex, cbValueNameLen, cbValueLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HeapFree (hHeap, 0, lpValue) == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("HeapFree failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HeapFree (hHeap, 0, lpValueName) == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("HeapFree failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
r = RegCloseKey (hkSubKey);
|
|
|
|
if (r != ERROR_SUCCESS)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("RegCloseKey returned %i\n", r);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = RegCloseKey (hkSubKey);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("RegCloseKey returned %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
2001-06-13 22:13:18 +02:00
|
|
|
* EnumPrinterDataExA [WINSPOOL.@]
|
2001-02-21 05:00:40 +01:00
|
|
|
*
|
|
|
|
* This functions returns value names and REG_SZ, REG_EXPAND_SZ, and
|
|
|
|
* REG_MULTI_SZ values as ASCII strings in Unicode-sized buffers. This is
|
|
|
|
* what Windows 2000 SP1 does.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
|
|
|
|
LPBYTE pEnumValues, DWORD cbEnumValues,
|
|
|
|
LPDWORD pcbEnumValues, LPDWORD pnEnumValues)
|
|
|
|
{
|
|
|
|
INT len;
|
|
|
|
LPWSTR pKeyNameW;
|
|
|
|
DWORD ret, dwIndex, dwBufSize;
|
|
|
|
HANDLE hHeap;
|
|
|
|
LPSTR pBuffer;
|
|
|
|
|
2002-10-22 02:47:33 +02:00
|
|
|
TRACE ("%p %s\n", hPrinter, pKeyName);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
if (pKeyName == NULL || *pKeyName == 0)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
len = MultiByteToWideChar (CP_ACP, 0, pKeyName, -1, NULL, 0);
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("MultiByteToWideChar failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
hHeap = GetProcessHeap ();
|
2003-01-15 00:43:41 +01:00
|
|
|
if (hHeap == NULL)
|
2001-02-21 05:00:40 +01:00
|
|
|
{
|
|
|
|
ERR ("GetProcessHeap failed\n");
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
pKeyNameW = HeapAlloc (hHeap, 0, len * sizeof (WCHAR));
|
|
|
|
if (pKeyNameW == NULL)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("Failed to allocate %i bytes from process heap\n",
|
2006-10-20 12:16:45 +02:00
|
|
|
(LONG)(len * sizeof (WCHAR)));
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MultiByteToWideChar (CP_ACP, 0, pKeyName, -1, pKeyNameW, len) == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("MultiByteToWideChar failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, pKeyNameW) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = EnumPrinterDataExW (hPrinter, pKeyNameW, pEnumValues, cbEnumValues,
|
|
|
|
pcbEnumValues, pnEnumValues);
|
|
|
|
if (ret != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (HeapFree (hHeap, 0, pKeyNameW) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
|
|
|
TRACE ("EnumPrinterDataExW returned %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HeapFree (hHeap, 0, pKeyNameW) == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("HeapFree failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
if (*pnEnumValues == 0) /* empty key */
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
|
|
|
|
dwBufSize = 0;
|
|
|
|
for (dwIndex = 0; dwIndex < *pnEnumValues; ++dwIndex)
|
|
|
|
{
|
|
|
|
PPRINTER_ENUM_VALUESW ppev =
|
|
|
|
&((PPRINTER_ENUM_VALUESW) pEnumValues)[dwIndex];
|
|
|
|
|
|
|
|
if (dwBufSize < ppev->cbValueName)
|
|
|
|
dwBufSize = ppev->cbValueName;
|
|
|
|
|
|
|
|
if (dwBufSize < ppev->cbData && (ppev->dwType == REG_SZ ||
|
|
|
|
ppev->dwType == REG_EXPAND_SZ || ppev->dwType == REG_MULTI_SZ))
|
|
|
|
dwBufSize = ppev->cbData;
|
|
|
|
}
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE ("Largest Unicode name or value is %i bytes\n", dwBufSize);
|
2001-02-21 05:00:40 +01:00
|
|
|
|
|
|
|
pBuffer = HeapAlloc (hHeap, 0, dwBufSize);
|
|
|
|
if (pBuffer == NULL)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("Failed to allocate %i bytes from process heap\n", dwBufSize);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (dwIndex = 0; dwIndex < *pnEnumValues; ++dwIndex)
|
|
|
|
{
|
|
|
|
PPRINTER_ENUM_VALUESW ppev =
|
|
|
|
&((PPRINTER_ENUM_VALUESW) pEnumValues)[dwIndex];
|
|
|
|
|
|
|
|
len = WideCharToMultiByte (CP_ACP, 0, ppev->pValueName,
|
|
|
|
ppev->cbValueName / sizeof (WCHAR), pBuffer, dwBufSize, NULL,
|
|
|
|
NULL);
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("WideCharToMultiByte failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, pBuffer) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy (ppev->pValueName, pBuffer, len);
|
|
|
|
|
|
|
|
TRACE ("Converted '%s' from Unicode to ASCII\n", pBuffer);
|
|
|
|
|
|
|
|
if (ppev->dwType != REG_SZ && ppev->dwType != REG_EXPAND_SZ &&
|
|
|
|
ppev->dwType != REG_MULTI_SZ)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
len = WideCharToMultiByte (CP_ACP, 0, (LPWSTR) ppev->pData,
|
|
|
|
ppev->cbData / sizeof (WCHAR), pBuffer, dwBufSize, NULL, NULL);
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("WideCharToMultiByte failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
if (HeapFree (hHeap, 0, pBuffer) == 0)
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN ("HeapFree failed with code %i\n", GetLastError ());
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy (ppev->pData, pBuffer, len);
|
|
|
|
|
|
|
|
TRACE ("Converted '%s' from Unicode to ASCII\n", pBuffer);
|
|
|
|
TRACE (" (only first string of REG_MULTI_SZ printed)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HeapFree (hHeap, 0, pBuffer) == 0)
|
|
|
|
{
|
|
|
|
ret = GetLastError ();
|
2006-10-13 11:51:23 +02:00
|
|
|
ERR ("HeapFree failed with code %i\n", ret);
|
2001-02-21 05:00:40 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
2003-05-14 00:25:12 +02:00
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* AbortPrinter (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AbortPrinter( HANDLE hPrinter )
|
|
|
|
{
|
|
|
|
FIXME("(%p), stub!\n", hPrinter);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-05-14 00:25:12 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* AddPortA (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* See AddPortW.
|
|
|
|
*
|
2003-05-14 00:25:12 +02:00
|
|
|
*/
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
BOOL WINAPI AddPortA(LPSTR pName, HWND hWnd, LPSTR pMonitorName)
|
2003-05-14 00:25:12 +02:00
|
|
|
{
|
2006-11-28 00:49:54 +01:00
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
LPWSTR monitorW = NULL;
|
|
|
|
DWORD len;
|
|
|
|
BOOL res;
|
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n",debugstr_a(pName), hWnd, debugstr_a(pMonitorName));
|
|
|
|
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pMonitorName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, NULL, 0);
|
|
|
|
monitorW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, monitorW, len);
|
|
|
|
}
|
|
|
|
res = AddPortW(nameW, hWnd, monitorW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, monitorW);
|
|
|
|
return res;
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AddPortW (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* Add a Port for a specific Monitor
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* hWnd [I] Handle to parent Window for the Dialog-Box
|
|
|
|
* pMonitorName [I] Name of the Monitor that manage the Port
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPortW(LPWSTR pName, HWND hWnd, LPWSTR pMonitorName)
|
|
|
|
{
|
2006-11-28 00:49:06 +01:00
|
|
|
monitor_t * pm;
|
2007-01-15 05:37:24 +01:00
|
|
|
monitor_t * pui;
|
|
|
|
DWORD res;
|
2006-11-28 00:49:06 +01:00
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n", debugstr_w(pName), hWnd, debugstr_w(pMonitorName));
|
|
|
|
|
|
|
|
if (pName && pName[0]) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pMonitorName) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* an empty Monitorname is Invalid */
|
2007-01-15 05:37:24 +01:00
|
|
|
if (!pMonitorName[0]) {
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-11-28 00:49:06 +01:00
|
|
|
|
|
|
|
pm = monitor_load(pMonitorName, NULL);
|
2007-01-15 05:37:24 +01:00
|
|
|
if (pm && pm->monitor && pm->monitor->pfnAddPort) {
|
|
|
|
res = pm->monitor->pfnAddPort(pName, hWnd, pMonitorName);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
|
|
|
res = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pui = monitor_loadui(pm);
|
|
|
|
if (pui && pui->monitorUI && pui->monitorUI->pfnAddPortUI) {
|
|
|
|
TRACE("use %p: %s\n", pui, debugstr_w(pui->dllname));
|
|
|
|
res = pui->monitorUI->pfnAddPortUI(pName, hWnd, pMonitorName, NULL);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
|
|
|
res = TRUE;
|
2006-11-28 00:49:06 +01:00
|
|
|
}
|
2007-01-15 05:37:24 +01:00
|
|
|
else
|
2006-11-28 00:49:06 +01:00
|
|
|
{
|
2007-01-15 05:37:24 +01:00
|
|
|
FIXME("not implemented for %s (%p: %s => %p: %s)\n", debugstr_w(pMonitorName),
|
|
|
|
pm, pm ? debugstr_w(pm->dllname) : NULL, pui, pui ? debugstr_w(pui->dllname) : NULL);
|
|
|
|
|
|
|
|
/* XP: ERROR_NOT_SUPPORTED, NT351,9x: ERROR_INVALID_PARAMETER */
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
res = FALSE;
|
2006-11-28 00:49:06 +01:00
|
|
|
}
|
2007-01-15 05:37:24 +01:00
|
|
|
monitor_unload(pui);
|
2006-11-28 00:49:06 +01:00
|
|
|
}
|
2007-01-15 05:37:24 +01:00
|
|
|
monitor_unload(pm);
|
|
|
|
TRACE("returning %d with %u\n", res, GetLastError());
|
|
|
|
return res;
|
2003-05-14 00:25:12 +02:00
|
|
|
}
|
2003-08-12 20:54:26 +02:00
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* AddPortExA (WINSPOOL.@)
|
|
|
|
*
|
2005-12-06 10:57:01 +01:00
|
|
|
* See AddPortExW.
|
|
|
|
*
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
*/
|
2007-06-04 00:23:55 +02:00
|
|
|
BOOL WINAPI AddPortExA(LPSTR pName, DWORD level, LPBYTE pBuffer, LPSTR pMonitorName)
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
{
|
2007-06-04 00:23:55 +02:00
|
|
|
PORT_INFO_2W pi2W;
|
|
|
|
PORT_INFO_2A * pi2A;
|
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
LPWSTR monitorW = NULL;
|
|
|
|
DWORD len;
|
|
|
|
BOOL res;
|
|
|
|
|
|
|
|
pi2A = (PORT_INFO_2A *) pBuffer;
|
|
|
|
|
|
|
|
TRACE("(%s, %d, %p, %s): %s\n", debugstr_a(pName), level, pBuffer,
|
|
|
|
debugstr_a(pMonitorName), debugstr_a(pi2A ? pi2A->pPortName : NULL));
|
|
|
|
|
|
|
|
if ((level < 1) || (level > 2)) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pi2A) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pMonitorName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, NULL, 0);
|
|
|
|
monitorW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pMonitorName, -1, monitorW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZeroMemory(&pi2W, sizeof(PORT_INFO_2W));
|
|
|
|
|
|
|
|
if (pi2A->pPortName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pi2A->pPortName, -1, NULL, 0);
|
|
|
|
pi2W.pPortName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pi2A->pPortName, -1, pi2W.pPortName, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level > 1) {
|
|
|
|
if (pi2A->pMonitorName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pi2A->pMonitorName, -1, NULL, 0);
|
|
|
|
pi2W.pMonitorName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pi2A->pMonitorName, -1, pi2W.pMonitorName, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pi2A->pDescription) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pi2A->pDescription, -1, NULL, 0);
|
|
|
|
pi2W.pDescription = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pi2A->pDescription, -1, pi2W.pDescription, len);
|
|
|
|
}
|
|
|
|
pi2W.fPortType = pi2A->fPortType;
|
|
|
|
pi2W.Reserved = pi2A->Reserved;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = AddPortExW(nameW, level, (LPBYTE) &pi2W, monitorW);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, monitorW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi2W.pPortName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi2W.pMonitorName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi2W.pDescription);
|
|
|
|
return res;
|
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AddPortExW (WINSPOOL.@)
|
|
|
|
*
|
2005-12-06 10:57:01 +01:00
|
|
|
* Add a Port for a specific Monitor, without presenting a user interface
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
2007-06-04 00:23:55 +02:00
|
|
|
* level [I] Structure-Level (1 or 2) for pBuffer
|
|
|
|
* pBuffer [I] PTR to: PORT_INFO_1 or PORT_INFO_2
|
|
|
|
* pMonitorName [I] Name of the Monitor that manage the Port
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
*/
|
2007-06-04 00:23:55 +02:00
|
|
|
BOOL WINAPI AddPortExW(LPWSTR pName, DWORD level, LPBYTE pBuffer, LPWSTR pMonitorName)
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
{
|
2007-06-04 00:23:55 +02:00
|
|
|
PORT_INFO_2W * pi2;
|
|
|
|
monitor_t * pm;
|
|
|
|
DWORD res = FALSE;
|
|
|
|
|
|
|
|
pi2 = (PORT_INFO_2W *) pBuffer;
|
|
|
|
|
|
|
|
TRACE("(%s, %d, %p, %s): %s %s %s\n", debugstr_w(pName), level, pBuffer,
|
|
|
|
debugstr_w(pMonitorName), debugstr_w(pi2 ? pi2->pPortName : NULL),
|
|
|
|
debugstr_w(((level > 1) && pi2) ? pi2->pMonitorName : NULL),
|
|
|
|
debugstr_w(((level > 1) && pi2) ? pi2->pDescription : NULL));
|
|
|
|
|
|
|
|
|
|
|
|
if ((level < 1) || (level > 2)) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-06-18 00:58:49 +02:00
|
|
|
if ((!pi2) || (!pMonitorName) || (!pMonitorName[0])) {
|
2007-06-04 00:23:55 +02:00
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* load the Monitor */
|
|
|
|
pm = monitor_load(pMonitorName, NULL);
|
2007-06-18 00:58:49 +02:00
|
|
|
if (!pm) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-06-04 00:23:55 +02:00
|
|
|
|
|
|
|
if (pm->monitor && pm->monitor->pfnAddPortEx) {
|
|
|
|
res = pm->monitor->pfnAddPortEx(pName, level, pBuffer, pMonitorName);
|
|
|
|
TRACE("got %u with %u\n", res, GetLastError());
|
|
|
|
}
|
2007-06-18 00:58:49 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("not implemented for %s (%p)\n", debugstr_w(pMonitorName), pm->monitor);
|
|
|
|
}
|
2007-06-04 00:23:55 +02:00
|
|
|
monitor_unload(pm);
|
|
|
|
return res;
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AddPrinterConnectionA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrinterConnectionA( LPSTR pName )
|
|
|
|
{
|
|
|
|
FIXME("%s\n", debugstr_a(pName));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* AddPrinterConnectionW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AddPrinterConnectionW( LPWSTR pName )
|
|
|
|
{
|
|
|
|
FIXME("%s\n", debugstr_w(pName));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-08-12 20:54:26 +02:00
|
|
|
/******************************************************************************
|
2007-08-15 23:30:59 +02:00
|
|
|
* AddPrinterDriverExW (WINSPOOL.@)
|
|
|
|
*
|
|
|
|
* Install a Printer Driver with the Option to upgrade / downgrade the Files
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* level [I] Level for the supplied DRIVER_INFO_*W struct
|
|
|
|
* pDriverInfo [I] PTR to DRIVER_INFO_*W struct with the Driver Parameter
|
|
|
|
* dwFileCopyFlags [I] How to Copy / Upgrade / Downgrade the needed Files
|
|
|
|
*
|
|
|
|
* RESULTS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
2003-08-12 20:54:26 +02:00
|
|
|
*/
|
2007-08-15 23:30:59 +02:00
|
|
|
BOOL WINAPI AddPrinterDriverExW( LPWSTR pName, DWORD level, LPBYTE pDriverInfo, DWORD dwFileCopyFlags)
|
2003-08-12 20:54:26 +02:00
|
|
|
{
|
2007-08-15 23:30:59 +02:00
|
|
|
const printenv_t *env;
|
|
|
|
apd_data_t apd;
|
|
|
|
DRIVER_INFO_8W di;
|
|
|
|
LPWSTR ptr;
|
|
|
|
HKEY hroot;
|
|
|
|
HKEY hdrv;
|
|
|
|
DWORD disposition;
|
|
|
|
DWORD len;
|
|
|
|
LONG lres;
|
|
|
|
|
|
|
|
TRACE("(%s, %d, %p, 0x%x)\n", debugstr_w(pName), level, pDriverInfo, dwFileCopyFlags);
|
|
|
|
|
|
|
|
if (level < 2 || level == 5 || level == 7 || level > 8) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pDriverInfo) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((dwFileCopyFlags & ~APD_COPY_FROM_DIRECTORY) != APD_COPY_ALL_FILES) {
|
|
|
|
FIXME("Flags 0x%x ignored (Fallback to APD_COPY_ALL_FILES)\n", dwFileCopyFlags & ~APD_COPY_FROM_DIRECTORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = get_servername_from_name(pName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, ptr);
|
|
|
|
if (ptr) {
|
2007-08-29 21:43:57 +02:00
|
|
|
FIXME("not supported for server: %s\n", debugstr_w(pName));
|
2007-08-15 23:30:59 +02:00
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we need to set all entries in the Registry, independent from the Level of
|
|
|
|
DRIVER_INFO, that the caller supplied */
|
|
|
|
|
|
|
|
ZeroMemory(&di, sizeof(di));
|
|
|
|
if (pDriverInfo && (level < (sizeof(di_sizeof) / sizeof(di_sizeof[0])))) {
|
|
|
|
memcpy(&di, pDriverInfo, di_sizeof[level]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dump the most used infos */
|
|
|
|
TRACE("%p: .cVersion : 0x%x/%d\n", pDriverInfo, di.cVersion, di.cVersion);
|
|
|
|
TRACE("%p: .pName : %s\n", di.pName, debugstr_w(di.pName));
|
|
|
|
TRACE("%p: .pEnvironment: %s\n", di.pEnvironment, debugstr_w(di.pEnvironment));
|
|
|
|
TRACE("%p: .pDriverPath : %s\n", di.pDriverPath, debugstr_w(di.pDriverPath));
|
|
|
|
TRACE("%p: .pDataFile : %s\n", di.pDataFile, debugstr_w(di.pDataFile));
|
|
|
|
TRACE("%p: .pConfigFile : %s\n", di.pConfigFile, debugstr_w(di.pConfigFile));
|
|
|
|
TRACE("%p: .pHelpFile : %s\n", di.pHelpFile, debugstr_w(di.pHelpFile));
|
|
|
|
/* dump only the first of the additional Files */
|
|
|
|
TRACE("%p: .pDependentFiles: %s\n", di.pDependentFiles, debugstr_w(di.pDependentFiles));
|
|
|
|
|
|
|
|
|
|
|
|
/* check environment */
|
|
|
|
env = validate_envW(di.pEnvironment);
|
|
|
|
if (env == NULL) return FALSE; /* ERROR_INVALID_ENVIRONMENT */
|
|
|
|
|
|
|
|
/* fill the copy-data / get the driverdir */
|
|
|
|
len = sizeof(apd.src) - sizeof(Version3_SubdirW) - sizeof(WCHAR);
|
|
|
|
if (!GetPrinterDriverDirectoryW(NULL, (LPWSTR) env->envname, 1,
|
|
|
|
(LPBYTE) apd.src, len, &len)) {
|
|
|
|
/* Should never Fail */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
memcpy(apd.dst, apd.src, len);
|
|
|
|
lstrcatW(apd.src, backslashW);
|
|
|
|
apd.srclen = lstrlenW(apd.src);
|
|
|
|
lstrcatW(apd.dst, env->versionsubdir);
|
|
|
|
lstrcatW(apd.dst, backslashW);
|
|
|
|
apd.dstlen = lstrlenW(apd.dst);
|
|
|
|
apd.copyflags = dwFileCopyFlags;
|
|
|
|
CreateDirectoryW(apd.src, NULL);
|
|
|
|
CreateDirectoryW(apd.dst, NULL);
|
|
|
|
|
|
|
|
/* Fill the Registry for the Driver */
|
|
|
|
hroot = WINSPOOL_OpenDriverReg(env->envname, TRUE);
|
|
|
|
if(!hroot) {
|
|
|
|
ERR("Can't create Drivers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((lres = RegCreateKeyExW(hroot, di.pName, 0, NULL, REG_OPTION_NON_VOLATILE,
|
|
|
|
KEY_WRITE | KEY_QUERY_VALUE, NULL,
|
|
|
|
&hdrv, &disposition)) != ERROR_SUCCESS) {
|
|
|
|
|
|
|
|
ERR("can't create driver %s: %u\n", debugstr_w(di.pName), lres);
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
SetLastError(lres);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
RegCloseKey(hroot);
|
|
|
|
|
|
|
|
if (disposition == REG_OPENED_EXISTING_KEY) {
|
|
|
|
TRACE("driver %s already installed\n", debugstr_w(di.pName));
|
|
|
|
RegCloseKey(hdrv);
|
|
|
|
SetLastError(ERROR_PRINTER_DRIVER_ALREADY_INSTALLED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Verified with the Adobe PS Driver, that w2k does not use di.Version */
|
|
|
|
RegSetValueExW(hdrv, VersionW, 0, REG_DWORD, (LPBYTE) &env->driverversion,
|
|
|
|
sizeof(DWORD));
|
|
|
|
|
|
|
|
RegSetValueExW(hdrv, DriverW, 0, REG_SZ, (LPBYTE) di.pDriverPath,
|
|
|
|
(lstrlenW(di.pDriverPath)+1)* sizeof(WCHAR));
|
|
|
|
apd_copyfile(di.pDriverPath, &apd);
|
|
|
|
|
|
|
|
RegSetValueExW(hdrv, Data_FileW, 0, REG_SZ, (LPBYTE) di.pDataFile,
|
|
|
|
(lstrlenW(di.pDataFile)+1)* sizeof(WCHAR));
|
|
|
|
apd_copyfile(di.pDataFile, &apd);
|
|
|
|
|
|
|
|
RegSetValueExW(hdrv, Configuration_FileW, 0, REG_SZ, (LPBYTE) di.pConfigFile,
|
|
|
|
(lstrlenW(di.pConfigFile)+1)* sizeof(WCHAR));
|
|
|
|
apd_copyfile(di.pConfigFile, &apd);
|
|
|
|
|
|
|
|
/* settings for level 3 */
|
|
|
|
RegSetValueExW(hdrv, Help_FileW, 0, REG_SZ, (LPBYTE) di.pHelpFile,
|
|
|
|
di.pHelpFile ? (lstrlenW(di.pHelpFile)+1)* sizeof(WCHAR) : 0);
|
|
|
|
apd_copyfile(di.pHelpFile, &apd);
|
|
|
|
|
|
|
|
|
|
|
|
ptr = di.pDependentFiles;
|
|
|
|
RegSetValueExW(hdrv, Dependent_FilesW, 0, REG_MULTI_SZ, (LPBYTE) di.pDependentFiles,
|
|
|
|
di.pDependentFiles ? multi_sz_lenW(di.pDependentFiles) : 0);
|
|
|
|
while ((ptr != NULL) && (ptr[0])) {
|
|
|
|
if (apd_copyfile(ptr, &apd)) {
|
|
|
|
ptr += lstrlenW(ptr) + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN("Failed to copy %s\n", debugstr_w(ptr));
|
|
|
|
ptr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The language-Monitor was already copied to "%SystemRoot%\system32" */
|
|
|
|
RegSetValueExW(hdrv, MonitorW, 0, REG_SZ, (LPBYTE) di.pMonitorName,
|
|
|
|
di.pMonitorName ? (lstrlenW(di.pMonitorName)+1)* sizeof(WCHAR) : 0);
|
|
|
|
|
|
|
|
RegSetValueExW(hdrv, DatatypeW, 0, REG_SZ, (LPBYTE) di.pDefaultDataType,
|
|
|
|
di.pDefaultDataType ? (lstrlenW(di.pDefaultDataType)+1)* sizeof(WCHAR) : 0);
|
|
|
|
|
|
|
|
/* settings for level 4 */
|
|
|
|
RegSetValueExW(hdrv, Previous_NamesW, 0, REG_MULTI_SZ, (LPBYTE) di.pszzPreviousNames,
|
|
|
|
di.pszzPreviousNames ? multi_sz_lenW(di.pszzPreviousNames) : 0);
|
|
|
|
|
|
|
|
if (level > 5) FIXME("level %u for Driver %s is incomplete\n", level, debugstr_w(di.pName));
|
|
|
|
|
|
|
|
|
|
|
|
RegCloseKey(hdrv);
|
|
|
|
FIXME("### DrvDriverEvent(...,DRIVEREVENT_INITIALIZE) not implemented yet\n");
|
|
|
|
|
|
|
|
|
|
|
|
TRACE("=> TRUE with %u\n", GetLastError());
|
|
|
|
return TRUE;
|
|
|
|
|
2003-08-12 20:54:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2007-08-16 05:18:08 +02:00
|
|
|
* AddPrinterDriverExA (WINSPOOL.@)
|
|
|
|
*
|
|
|
|
* See AddPrinterDriverExW.
|
|
|
|
*
|
2003-08-12 20:54:26 +02:00
|
|
|
*/
|
2007-08-16 05:18:08 +02:00
|
|
|
BOOL WINAPI AddPrinterDriverExA(LPSTR pName, DWORD Level, LPBYTE pDriverInfo, DWORD dwFileCopyFlags)
|
2003-08-12 20:54:26 +02:00
|
|
|
{
|
2007-08-16 05:18:08 +02:00
|
|
|
DRIVER_INFO_8A *diA;
|
|
|
|
DRIVER_INFO_8W diW;
|
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
DWORD lenA;
|
|
|
|
DWORD len;
|
|
|
|
DWORD res = FALSE;
|
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
TRACE("(%s, %d, %p, 0x%x)\n", debugstr_a(pName), Level, pDriverInfo, dwFileCopyFlags);
|
|
|
|
|
2007-08-16 05:18:08 +02:00
|
|
|
diA = (DRIVER_INFO_8A *) pDriverInfo;
|
|
|
|
ZeroMemory(&diW, sizeof(diW));
|
|
|
|
|
|
|
|
if (Level < 2 || Level == 5 || Level == 7 || Level > 8) {
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (diA == NULL) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert servername to unicode */
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* common fields */
|
|
|
|
diW.cVersion = diA->cVersion;
|
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if (diA->pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pName, -1, NULL, 0);
|
|
|
|
diW.pName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pName, -1, diW.pName, len);
|
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if (diA->pEnvironment) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pEnvironment, -1, NULL, 0);
|
|
|
|
diW.pEnvironment = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pEnvironment, -1, diW.pEnvironment, len);
|
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if (diA->pDriverPath) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pDriverPath, -1, NULL, 0);
|
|
|
|
diW.pDriverPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pDriverPath, -1, diW.pDriverPath, len);
|
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if (diA->pDataFile) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pDataFile, -1, NULL, 0);
|
|
|
|
diW.pDataFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pDataFile, -1, diW.pDataFile, len);
|
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if (diA->pConfigFile) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pConfigFile, -1, NULL, 0);
|
|
|
|
diW.pConfigFile = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pConfigFile, -1, diW.pConfigFile, len);
|
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 2) && diA->pDependentFiles) {
|
2007-08-16 05:18:08 +02:00
|
|
|
lenA = multi_sz_lenA(diA->pDependentFiles);
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pDependentFiles, lenA, NULL, 0);
|
|
|
|
diW.pDependentFiles = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pDependentFiles, lenA, diW.pDependentFiles, len);
|
2007-08-22 23:41:44 +02:00
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 2) && diA->pMonitorName) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pMonitorName, -1, NULL, 0);
|
|
|
|
diW.pMonitorName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pMonitorName, -1, diW.pMonitorName, len);
|
|
|
|
}
|
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 3) && diA->pDefaultDataType) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pDefaultDataType, -1, NULL, 0);
|
|
|
|
diW.pDefaultDataType = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pDefaultDataType, -1, diW.pDefaultDataType, len);
|
2007-08-22 23:41:44 +02:00
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 3) && diA->pszzPreviousNames) {
|
2007-08-16 05:18:08 +02:00
|
|
|
lenA = multi_sz_lenA(diA->pszzPreviousNames);
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pszzPreviousNames, lenA, NULL, 0);
|
|
|
|
diW.pszzPreviousNames = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pszzPreviousNames, lenA, diW.pszzPreviousNames, len);
|
|
|
|
}
|
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 5) && diA->pszMfgName) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pszMfgName, -1, NULL, 0);
|
|
|
|
diW.pszMfgName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pszMfgName, -1, diW.pszMfgName, len);
|
2007-08-22 23:41:44 +02:00
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 5) && diA->pszOEMUrl) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pszOEMUrl, -1, NULL, 0);
|
|
|
|
diW.pszOEMUrl = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pszOEMUrl, -1, diW.pszOEMUrl, len);
|
2007-08-22 23:41:44 +02:00
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 5) && diA->pszHardwareID) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pszHardwareID, -1, NULL, 0);
|
|
|
|
diW.pszHardwareID = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pszHardwareID, -1, diW.pszHardwareID, len);
|
2007-08-22 23:41:44 +02:00
|
|
|
}
|
2007-08-16 05:18:08 +02:00
|
|
|
|
2007-08-22 23:41:44 +02:00
|
|
|
if ((Level > 5) && diA->pszProvider) {
|
2007-08-16 05:18:08 +02:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, diA->pszProvider, -1, NULL, 0);
|
|
|
|
diW.pszProvider = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, diA->pszProvider, -1, diW.pszProvider, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Level > 7) {
|
|
|
|
FIXME("level %u is incomplete\n", Level);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = AddPrinterDriverExW(nameW, Level, (LPBYTE) &diW, dwFileCopyFlags);
|
|
|
|
TRACE("got %u with %u\n", res, GetLastError());
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pEnvironment);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pDriverPath);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pDataFile);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pConfigFile);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pDependentFiles);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pMonitorName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pDefaultDataType);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pszzPreviousNames);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pszMfgName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pszOEMUrl);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pszHardwareID);
|
|
|
|
HeapFree(GetProcessHeap(), 0, diW.pszProvider);
|
|
|
|
|
|
|
|
TRACE("=> %u with %u\n", res, GetLastError());
|
|
|
|
return res;
|
2003-08-12 20:54:26 +02:00
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* ConfigurePortA (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* See ConfigurePortW.
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ConfigurePortA(LPSTR pName, HWND hWnd, LPSTR pPortName)
|
|
|
|
{
|
2006-11-09 00:04:11 +01:00
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
LPWSTR portW = NULL;
|
|
|
|
INT len;
|
|
|
|
DWORD res;
|
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n", debugstr_a(pName), hWnd, debugstr_a(pPortName));
|
|
|
|
|
|
|
|
/* convert servername to unicode */
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert portname to unicode */
|
|
|
|
if (pPortName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pPortName, -1, NULL, 0);
|
|
|
|
portW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pPortName, -1, portW, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = ConfigurePortW(nameW, hWnd, portW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, portW);
|
|
|
|
return res;
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* ConfigurePortW (WINSPOOL.@)
|
2005-12-06 10:57:01 +01:00
|
|
|
*
|
|
|
|
* Display the Configuration-Dialog for a specific Port
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* hWnd [I] Handle to parent Window for the Dialog-Box
|
|
|
|
* pPortName [I] Name of the Port, that should be configured
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI ConfigurePortW(LPWSTR pName, HWND hWnd, LPWSTR pPortName)
|
|
|
|
{
|
2006-11-09 00:04:08 +01:00
|
|
|
monitor_t * pm;
|
2007-01-11 13:10:37 +01:00
|
|
|
monitor_t * pui;
|
|
|
|
DWORD res;
|
2006-11-09 00:04:08 +01:00
|
|
|
|
|
|
|
TRACE("(%s, %p, %s)\n", debugstr_w(pName), hWnd, debugstr_w(pPortName));
|
|
|
|
|
|
|
|
if (pName && pName[0]) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pPortName) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* an empty Portname is Invalid, but can popup a Dialog */
|
2007-01-11 13:10:37 +01:00
|
|
|
if (!pPortName[0]) {
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-11-09 00:04:08 +01:00
|
|
|
|
|
|
|
pm = monitor_load_by_port(pPortName);
|
2007-01-11 13:10:37 +01:00
|
|
|
if (pm && pm->monitor && pm->monitor->pfnConfigurePort) {
|
|
|
|
TRACE("Using %s for %s (%p: %s)\n", debugstr_w(pm->name), debugstr_w(pPortName), pm, debugstr_w(pm->dllname));
|
|
|
|
res = pm->monitor->pfnConfigurePort(pName, hWnd, pPortName);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pui = monitor_loadui(pm);
|
|
|
|
if (pui && pui->monitorUI && pui->monitorUI->pfnConfigurePortUI) {
|
|
|
|
TRACE("Use %s for %s (%p: %s)\n", debugstr_w(pui->name), debugstr_w(pPortName), pui, debugstr_w(pui->dllname));
|
|
|
|
res = pui->monitorUI->pfnConfigurePortUI(pName, hWnd, pPortName);
|
|
|
|
TRACE("got %d with %u\n", res, GetLastError());
|
2006-11-09 00:04:08 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-01-11 13:10:37 +01:00
|
|
|
FIXME("not implemented for %s (%p: %s => %p: %s)\n", debugstr_w(pPortName),
|
|
|
|
pm, pm ? debugstr_w(pm->dllname) : NULL, pui, pui ? debugstr_w(pui->dllname) : NULL);
|
|
|
|
|
|
|
|
/* XP: ERROR_NOT_SUPPORTED, NT351,9x: ERROR_INVALID_PARAMETER */
|
|
|
|
SetLastError(ERROR_NOT_SUPPORTED);
|
|
|
|
res = FALSE;
|
2006-11-09 00:04:08 +01:00
|
|
|
}
|
2007-01-11 13:10:37 +01:00
|
|
|
monitor_unload(pui);
|
2006-11-09 00:04:08 +01:00
|
|
|
}
|
|
|
|
monitor_unload(pm);
|
|
|
|
|
2007-01-11 13:10:37 +01:00
|
|
|
TRACE("returning %d with %u\n", res, GetLastError());
|
|
|
|
return res;
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* ConnectToPrinterDlg (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI ConnectToPrinterDlg( HWND hWnd, DWORD Flags )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("%p %x\n", hWnd, Flags);
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterConnectionA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrinterConnectionA( LPSTR pName )
|
|
|
|
{
|
|
|
|
FIXME("%s\n", debugstr_a(pName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterConnectionW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrinterConnectionW( LPWSTR pName )
|
|
|
|
{
|
|
|
|
FIXME("%s\n", debugstr_w(pName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-08-12 20:54:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterDriverExW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrinterDriverExW( LPWSTR pName, LPWSTR pEnvironment,
|
|
|
|
LPWSTR pDriverName, DWORD dwDeleteFlag, DWORD dwVersionFlag)
|
|
|
|
{
|
2006-11-07 13:27:09 +01:00
|
|
|
HKEY hkey_drivers;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
|
|
|
|
TRACE("%s %s %s %x %x\n", debugstr_w(pName), debugstr_w(pEnvironment),
|
2003-08-12 20:54:26 +02:00
|
|
|
debugstr_w(pDriverName), dwDeleteFlag, dwVersionFlag);
|
2006-11-07 13:27:09 +01:00
|
|
|
|
|
|
|
if(pName && pName[0])
|
|
|
|
{
|
|
|
|
FIXME("pName = %s - unsupported\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dwDeleteFlag)
|
|
|
|
{
|
|
|
|
FIXME("dwDeleteFlag = %x - unsupported\n", dwDeleteFlag);
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
hkey_drivers = WINSPOOL_OpenDriverReg(pEnvironment, TRUE);
|
|
|
|
|
|
|
|
if(!hkey_drivers)
|
|
|
|
{
|
|
|
|
ERR("Can't open drivers key\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-06-05 18:47:17 +02:00
|
|
|
if(RegDeleteTreeW(hkey_drivers, pDriverName) == ERROR_SUCCESS)
|
2006-11-07 13:27:09 +01:00
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
RegCloseKey(hkey_drivers);
|
|
|
|
|
|
|
|
return ret;
|
2003-08-12 20:54:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterDriverExA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrinterDriverExA( LPSTR pName, LPSTR pEnvironment,
|
|
|
|
LPSTR pDriverName, DWORD dwDeleteFlag, DWORD dwVersionFlag)
|
|
|
|
{
|
2006-11-07 13:06:04 +01:00
|
|
|
UNICODE_STRING NameW, EnvW, DriverW;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
asciitounicode(&NameW, pName);
|
|
|
|
asciitounicode(&EnvW, pEnvironment);
|
|
|
|
asciitounicode(&DriverW, pDriverName);
|
|
|
|
|
|
|
|
ret = DeletePrinterDriverExW(NameW.Buffer, EnvW.Buffer, DriverW.Buffer, dwDeleteFlag, dwVersionFlag);
|
|
|
|
|
|
|
|
RtlFreeUnicodeString(&DriverW);
|
|
|
|
RtlFreeUnicodeString(&EnvW);
|
|
|
|
RtlFreeUnicodeString(&NameW);
|
|
|
|
|
|
|
|
return ret;
|
2003-08-12 20:54:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterDataExW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI DeletePrinterDataExW( HANDLE hPrinter, LPCWSTR pKeyName,
|
|
|
|
LPCWSTR pValueName)
|
|
|
|
{
|
|
|
|
FIXME("%p %s %s\n", hPrinter,
|
|
|
|
debugstr_w(pKeyName), debugstr_w(pValueName));
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrinterDataExA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI DeletePrinterDataExA( HANDLE hPrinter, LPCSTR pKeyName,
|
|
|
|
LPCSTR pValueName)
|
|
|
|
{
|
|
|
|
FIXME("%p %s %s\n", hPrinter,
|
|
|
|
debugstr_a(pKeyName), debugstr_a(pValueName));
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrintProcessorA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrintProcessorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPrintProcessorName)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %s\n", debugstr_a(pName), debugstr_a(pEnvironment),
|
|
|
|
debugstr_a(pPrintProcessorName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrintProcessorW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrintProcessorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPrintProcessorName)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %s\n", debugstr_w(pName), debugstr_w(pEnvironment),
|
|
|
|
debugstr_w(pPrintProcessorName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrintProvidorA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrintProvidorA(LPSTR pName, LPSTR pEnvironment, LPSTR pPrintProviderName)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %s\n", debugstr_a(pName), debugstr_a(pEnvironment),
|
|
|
|
debugstr_a(pPrintProviderName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DeletePrintProvidorW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DeletePrintProvidorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPrintProviderName)
|
|
|
|
{
|
|
|
|
FIXME("%s %s %s\n", debugstr_w(pName), debugstr_w(pEnvironment),
|
|
|
|
debugstr_w(pPrintProviderName));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* EnumFormsA (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumFormsA( HANDLE hPrinter, DWORD Level, LPBYTE pForm,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("%p %x %p %x %p %p\n", hPrinter, Level, pForm, cbBuf, pcbNeeded, pcReturned);
|
2006-06-16 09:54:55 +02:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* EnumFormsW (WINSPOOL.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumFormsW( HANDLE hPrinter, DWORD Level, LPBYTE pForm,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("%p %x %p %x %p %p\n", hPrinter, Level, pForm, cbBuf, pcbNeeded, pcReturned);
|
2006-06-16 09:54:55 +02:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-03-17 02:42:46 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* EnumMonitorsA [WINSPOOL.@]
|
|
|
|
*
|
2005-12-06 11:33:52 +01:00
|
|
|
* See EnumMonitorsW.
|
|
|
|
*
|
2004-03-17 02:42:46 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumMonitorsA(LPSTR pName, DWORD Level, LPBYTE pMonitors,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{
|
2006-03-31 14:32:02 +02:00
|
|
|
BOOL res;
|
|
|
|
LPBYTE bufferW = NULL;
|
|
|
|
LPWSTR nameW = NULL;
|
|
|
|
DWORD needed = 0;
|
|
|
|
DWORD numentries = 0;
|
|
|
|
INT len;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %d, %p, %d, %p, %p)\n", debugstr_a(pName), Level, pMonitors,
|
2004-03-17 02:42:46 +01:00
|
|
|
cbBuf, pcbNeeded, pcReturned);
|
2006-03-31 14:32:02 +02:00
|
|
|
|
|
|
|
/* convert servername to unicode */
|
|
|
|
if (pName) {
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, pName, -1, NULL, 0);
|
|
|
|
nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pName, -1, nameW, len);
|
|
|
|
}
|
|
|
|
/* alloc (userbuffersize*sizeof(WCHAR) and try to enum the monitors */
|
|
|
|
needed = cbBuf * sizeof(WCHAR);
|
|
|
|
if (needed) bufferW = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
res = EnumMonitorsW(nameW, Level, bufferW, needed, pcbNeeded, pcReturned);
|
|
|
|
|
|
|
|
if(!res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER)) {
|
|
|
|
if (pcbNeeded) needed = *pcbNeeded;
|
|
|
|
/* HeapReAlloc return NULL, when bufferW was NULL */
|
|
|
|
bufferW = (bufferW) ? HeapReAlloc(GetProcessHeap(), 0, bufferW, needed) :
|
|
|
|
HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
|
|
|
|
/* Try again with the large Buffer */
|
|
|
|
res = EnumMonitorsW(nameW, Level, bufferW, needed, pcbNeeded, pcReturned);
|
|
|
|
}
|
|
|
|
numentries = pcReturned ? *pcReturned : 0;
|
|
|
|
needed = 0;
|
|
|
|
/*
|
|
|
|
W2k require the buffersize from EnumMonitorsW also for EnumMonitorsA.
|
|
|
|
We use the smaller Ansi-Size to avoid conflicts with fixed Buffers of old Apps.
|
|
|
|
*/
|
|
|
|
if (res) {
|
2007-01-18 11:35:50 +01:00
|
|
|
/* EnumMonitorsW collected all Data. Parse them to calculate ANSI-Size */
|
2006-03-31 14:32:02 +02:00
|
|
|
DWORD entrysize = 0;
|
|
|
|
DWORD index;
|
|
|
|
LPSTR ptr;
|
|
|
|
LPMONITOR_INFO_2W mi2w;
|
|
|
|
LPMONITOR_INFO_2A mi2a;
|
|
|
|
|
|
|
|
/* MONITOR_INFO_*W and MONITOR_INFO_*A have the same size */
|
|
|
|
entrysize = (Level == 1) ? sizeof(MONITOR_INFO_1A) : sizeof(MONITOR_INFO_2A);
|
|
|
|
|
|
|
|
/* First pass: calculate the size for all Entries */
|
|
|
|
mi2w = (LPMONITOR_INFO_2W) bufferW;
|
|
|
|
mi2a = (LPMONITOR_INFO_2A) pMonitors;
|
|
|
|
index = 0;
|
|
|
|
while (index < numentries) {
|
|
|
|
index++;
|
|
|
|
needed += entrysize; /* MONITOR_INFO_?A */
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p: parsing #%d (%s)\n", mi2w, index, debugstr_w(mi2w->pName));
|
2006-03-31 14:32:02 +02:00
|
|
|
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, mi2w->pName, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
if (Level > 1) {
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, mi2w->pEnvironment, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
needed += WideCharToMultiByte(CP_ACP, 0, mi2w->pDLLName, -1,
|
|
|
|
NULL, 0, NULL, NULL);
|
|
|
|
}
|
|
|
|
/* use LPBYTE with entrysize to avoid double code (MONITOR_INFO_1 + MONITOR_INFO_2) */
|
|
|
|
mi2w = (LPMONITOR_INFO_2W) (((LPBYTE)mi2w) + entrysize);
|
|
|
|
mi2a = (LPMONITOR_INFO_2A) (((LPBYTE)mi2a) + entrysize);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for errors and quit on failure */
|
|
|
|
if (cbBuf < needed) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
res = FALSE;
|
|
|
|
goto emA_cleanup;
|
|
|
|
}
|
|
|
|
len = entrysize * numentries; /* room for all MONITOR_INFO_?A */
|
|
|
|
ptr = (LPSTR) &pMonitors[len]; /* room for strings */
|
|
|
|
cbBuf -= len ; /* free Bytes in the user-Buffer */
|
|
|
|
mi2w = (LPMONITOR_INFO_2W) bufferW;
|
|
|
|
mi2a = (LPMONITOR_INFO_2A) pMonitors;
|
|
|
|
index = 0;
|
|
|
|
/* Second Pass: Fill the User Buffer (if we have one) */
|
|
|
|
while ((index < numentries) && pMonitors) {
|
|
|
|
index++;
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p: writing MONITOR_INFO_%dA #%d\n", mi2a, Level, index);
|
2006-03-31 14:32:02 +02:00
|
|
|
mi2a->pName = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, mi2w->pName, -1,
|
|
|
|
ptr, cbBuf , NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
if (Level > 1) {
|
|
|
|
mi2a->pEnvironment = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, mi2w->pEnvironment, -1,
|
|
|
|
ptr, cbBuf, NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
|
|
|
|
mi2a->pDLLName = ptr;
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, mi2w->pDLLName, -1,
|
|
|
|
ptr, cbBuf, NULL, NULL);
|
|
|
|
ptr += len;
|
|
|
|
cbBuf -= len;
|
|
|
|
}
|
|
|
|
/* use LPBYTE with entrysize to avoid double code (MONITOR_INFO_1 + MONITOR_INFO_2) */
|
|
|
|
mi2w = (LPMONITOR_INFO_2W) (((LPBYTE)mi2w) + entrysize);
|
|
|
|
mi2a = (LPMONITOR_INFO_2A) (((LPBYTE)mi2a) + entrysize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emA_cleanup:
|
|
|
|
if (pcbNeeded) *pcbNeeded = needed;
|
|
|
|
if (pcReturned) *pcReturned = (res) ? numentries : 0;
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, nameW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, bufferW);
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("returning %d with %d (%d byte for %d entries)\n",
|
2006-03-31 14:32:02 +02:00
|
|
|
(res), GetLastError(), needed, numentries);
|
|
|
|
|
|
|
|
return (res);
|
|
|
|
|
2004-03-17 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EnumMonitorsW [WINSPOOL.@]
|
|
|
|
*
|
2006-03-31 14:30:10 +02:00
|
|
|
* Enumerate available Port-Monitors
|
2005-12-06 11:33:52 +01:00
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pName [I] Servername or NULL (local Computer)
|
|
|
|
* Level [I] Structure-Level (1:Win9x+NT or 2:NT only)
|
|
|
|
* pMonitors [O] PTR to Buffer that receives the Result
|
|
|
|
* cbBuf [I] Size of Buffer at pMonitors
|
|
|
|
* pcbNeeded [O] PTR to DWORD that receives the size in Bytes used / required for pMonitors
|
|
|
|
* pcReturned [O] PTR to DWORD that receives the number of Monitors in pMonitors
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
2006-03-31 14:30:10 +02:00
|
|
|
* Failure: FALSE and in pcbNeeded the Bytes required for buffer, if cbBuf is too small
|
2005-12-06 11:33:52 +01:00
|
|
|
*
|
2006-03-31 14:30:10 +02:00
|
|
|
* NOTES
|
|
|
|
* Windows reads the Registry once and cache the Results.
|
|
|
|
*
|
|
|
|
*| Language-Monitors are also installed in the same Registry-Location but
|
|
|
|
*| they are filtered in Windows (not returned by EnumMonitors).
|
|
|
|
*| We do no filtering to simplify our Code.
|
2005-12-06 11:33:52 +01:00
|
|
|
*
|
2004-03-17 02:42:46 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumMonitorsW(LPWSTR pName, DWORD Level, LPBYTE pMonitors,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{
|
2006-03-31 14:30:10 +02:00
|
|
|
DWORD needed = 0;
|
|
|
|
DWORD numentries = 0;
|
2006-04-08 19:17:06 +02:00
|
|
|
BOOL res = FALSE;
|
2006-03-31 14:30:10 +02:00
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%s, %d, %p, %d, %p, %p)\n", debugstr_w(pName), Level, pMonitors,
|
2004-03-17 02:42:46 +01:00
|
|
|
cbBuf, pcbNeeded, pcReturned);
|
2006-03-31 14:30:10 +02:00
|
|
|
|
|
|
|
if (pName && (lstrlenW(pName))) {
|
|
|
|
FIXME("for Server %s not implemented\n", debugstr_w(pName));
|
|
|
|
SetLastError(ERROR_ACCESS_DENIED);
|
|
|
|
goto emW_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Level is not checked in win9x */
|
|
|
|
if (!Level || (Level > 2)) {
|
2006-10-13 11:51:23 +02:00
|
|
|
WARN("level (%d) is ignored in win9x\n", Level);
|
2006-03-31 14:30:10 +02:00
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
goto emW_cleanup;
|
|
|
|
}
|
|
|
|
if (!pcbNeeded) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
goto emW_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scan all Monitor-Keys */
|
|
|
|
numentries = 0;
|
|
|
|
needed = get_local_monitors(Level, NULL, 0, &numentries);
|
|
|
|
|
|
|
|
/* we calculated the needed buffersize. now do the error-checks */
|
|
|
|
if (cbBuf < needed) {
|
|
|
|
SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
goto emW_cleanup;
|
|
|
|
}
|
|
|
|
else if (!pMonitors || !pcReturned) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
goto emW_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fill the Buffer with the Monitor-Keys */
|
|
|
|
needed = get_local_monitors(Level, pMonitors, cbBuf, &numentries);
|
|
|
|
res = TRUE;
|
|
|
|
|
|
|
|
emW_cleanup:
|
|
|
|
if (pcbNeeded) *pcbNeeded = needed;
|
|
|
|
if (pcReturned) *pcReturned = numentries;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("returning %d with %d (%d byte for %d entries)\n",
|
2006-03-31 14:30:10 +02:00
|
|
|
res, GetLastError(), needed, numentries);
|
|
|
|
|
|
|
|
return (res);
|
2004-03-17 02:42:46 +01:00
|
|
|
}
|
|
|
|
|
2003-08-12 20:54:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* XcvDataW (WINSPOOL.@)
|
|
|
|
*
|
2007-01-05 01:11:21 +01:00
|
|
|
* Execute commands in the Printmonitor DLL
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hXcv [i] Handle from OpenPrinter (with XcvMonitor or XcvPort)
|
|
|
|
* pszDataName [i] Name of the command to execute
|
|
|
|
* pInputData [i] Buffer for extra Input Data (needed only for some commands)
|
|
|
|
* cbInputData [i] Size in Bytes of Buffer at pInputData
|
|
|
|
* pOutputData [o] Buffer to receive additional Data (needed only for some commands)
|
|
|
|
* cbOutputData [i] Size in Bytes of Buffer at pOutputData
|
|
|
|
* pcbOutputNeeded [o] PTR to receive the minimal Size in Bytes of the Buffer at pOutputData
|
|
|
|
* pdwStatus [o] PTR to receive the win32 error code from the Printmonitor DLL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Returning "TRUE" does mean, that the Printmonitor DLL was called successful.
|
|
|
|
* The execution of the command can still fail (check pdwStatus for ERROR_SUCCESS).
|
|
|
|
*
|
|
|
|
* Minimal List of commands, that a Printmonitor DLL should support:
|
|
|
|
*
|
|
|
|
*| "MonitorUI" : Return the Name of the Userinterface-DLL as WSTR in pOutputData
|
|
|
|
*| "AddPort" : Add a Port
|
|
|
|
*| "DeletePort": Delete a Port
|
|
|
|
*
|
|
|
|
* Many Printmonitors support additional commands. Examples for localspl.dll:
|
|
|
|
* "GetDefaultCommConfig", "SetDefaultCommConfig",
|
|
|
|
* "GetTransmissionRetryTimeout", "ConfigureLPTPortCommandOK"
|
|
|
|
*
|
2003-08-12 20:54:26 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI XcvDataW( HANDLE hXcv, LPCWSTR pszDataName, PBYTE pInputData,
|
|
|
|
DWORD cbInputData, PBYTE pOutputData, DWORD cbOutputData,
|
|
|
|
PDWORD pcbOutputNeeded, PDWORD pdwStatus)
|
|
|
|
{
|
2007-01-05 01:11:21 +01:00
|
|
|
opened_printer_t *printer;
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %p, %d, %p, %d, %p, %p)\n", hXcv, debugstr_w(pszDataName),
|
2003-08-12 20:54:26 +02:00
|
|
|
pInputData, cbInputData, pOutputData,
|
|
|
|
cbOutputData, pcbOutputNeeded, pdwStatus);
|
2007-01-05 01:11:21 +01:00
|
|
|
|
|
|
|
printer = get_opened_printer(hXcv);
|
|
|
|
if (!printer || (!printer->hXcv)) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-01-15 05:38:28 +01:00
|
|
|
if (!pcbOutputNeeded) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pszDataName || !pdwStatus || (!pOutputData && (cbOutputData > 0))) {
|
|
|
|
SetLastError(RPC_X_NULL_REF_POINTER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pcbOutputNeeded = 0;
|
|
|
|
|
2007-01-05 01:11:21 +01:00
|
|
|
*pdwStatus = printer->pm->monitor->pfnXcvDataPort(printer->hXcv, pszDataName,
|
|
|
|
pInputData, cbInputData, pOutputData, cbOutputData, pcbOutputNeeded);
|
|
|
|
|
|
|
|
return TRUE;
|
2003-08-12 20:54:26 +02:00
|
|
|
}
|
2004-10-29 23:27:38 +02:00
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrinterDataA [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
DWORD WINAPI EnumPrinterDataA( HANDLE hPrinter, DWORD dwIndex, LPSTR pValueName,
|
|
|
|
DWORD cbValueName, LPDWORD pcbValueName, LPDWORD pType, LPBYTE pData,
|
|
|
|
DWORD cbData, LPDWORD pcbData )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("%p %x %p %x %p %p %p %x %p\n", hPrinter, dwIndex, pValueName,
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
cbValueName, pcbValueName, pType, pData, cbData, pcbData);
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrinterDataW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
DWORD WINAPI EnumPrinterDataW( HANDLE hPrinter, DWORD dwIndex, LPWSTR pValueName,
|
|
|
|
DWORD cbValueName, LPDWORD pcbValueName, LPDWORD pType, LPBYTE pData,
|
|
|
|
DWORD cbData, LPDWORD pcbData )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("%p %x %p %x %p %p %p %x %p\n", hPrinter, dwIndex, pValueName,
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
cbValueName, pcbValueName, pType, pData, cbData, pcbData);
|
|
|
|
return ERROR_NO_MORE_ITEMS;
|
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrintProcessorDatatypesA [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrintProcessorDatatypesA(LPSTR pName, LPSTR pPrintProcessorName,
|
|
|
|
DWORD Level, LPBYTE pDatatypes, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %s %s %d %p %d %p %p\n", debugstr_a(pName),
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
debugstr_a(pPrintProcessorName), Level, pDatatypes, cbBuf,
|
|
|
|
pcbNeeded, pcReturned);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrintProcessorDatatypesW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrintProcessorDatatypesW(LPWSTR pName, LPWSTR pPrintProcessorName,
|
|
|
|
DWORD Level, LPBYTE pDatatypes, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, LPDWORD pcReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %s %s %d %p %d %p %p\n", debugstr_w(pName),
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
debugstr_w(pPrintProcessorName), Level, pDatatypes, cbBuf,
|
|
|
|
pcbNeeded, pcReturned);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-10-29 23:27:38 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrintProcessorsA [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrintProcessorsA(LPSTR pName, LPSTR pEnvironment, DWORD Level,
|
|
|
|
LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcbReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %s %s %d %p %d %p %p\n", pName, pEnvironment, Level,
|
2004-10-29 23:27:38 +02:00
|
|
|
pPrintProcessorInfo, cbBuf, pcbNeeded, pcbReturned);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* EnumPrintProcessorsW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EnumPrintProcessorsW(LPWSTR pName, LPWSTR pEnvironment, DWORD Level,
|
|
|
|
LPBYTE pPrintProcessorInfo, DWORD cbBuf, LPDWORD pcbNeeded, LPDWORD pcbReturned)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %s %s %d %p %d %p %p\n", debugstr_w(pName),
|
2004-10-29 23:27:38 +02:00
|
|
|
debugstr_w(pEnvironment), Level, pPrintProcessorInfo,
|
|
|
|
cbBuf, pcbNeeded, pcbReturned);
|
|
|
|
return FALSE;
|
|
|
|
}
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* ExtDeviceMode [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
LONG WINAPI ExtDeviceMode( HWND hWnd, HANDLE hInst, LPDEVMODEA pDevModeOutput,
|
|
|
|
LPSTR pDeviceName, LPSTR pPort, LPDEVMODEA pDevModeInput, LPSTR pProfile,
|
|
|
|
DWORD fMode)
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %p %p %p %s %s %p %s %x\n", hWnd, hInst, pDevModeOutput,
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
debugstr_a(pDeviceName), debugstr_a(pPort), pDevModeInput,
|
|
|
|
debugstr_a(pProfile), fMode);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* FindClosePrinterChangeNotification [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FindClosePrinterChangeNotification( HANDLE hChange )
|
|
|
|
{
|
|
|
|
FIXME("Stub: %p\n", hChange);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* FindFirstPrinterChangeNotification [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI FindFirstPrinterChangeNotification( HANDLE hPrinter,
|
|
|
|
DWORD fdwFlags, DWORD fdwOptions, LPVOID pPrinterNotifyOptions )
|
|
|
|
{
|
2006-10-13 11:51:23 +02:00
|
|
|
FIXME("Stub: %p %x %x %p\n",
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
hPrinter, fdwFlags, fdwOptions, pPrinterNotifyOptions);
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* FindNextPrinterChangeNotification [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FindNextPrinterChangeNotification( HANDLE hChange, PDWORD pdwChange,
|
|
|
|
LPVOID pPrinterNotifyOptions, LPVOID *ppPrinterNotifyInfo )
|
|
|
|
{
|
|
|
|
FIXME("Stub: %p %p %p %p\n",
|
|
|
|
hChange, pdwChange, pPrinterNotifyOptions, ppPrinterNotifyInfo);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* FreePrinterNotifyInfo [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FreePrinterNotifyInfo( PPRINTER_NOTIFY_INFO pPrinterNotifyInfo )
|
|
|
|
{
|
|
|
|
FIXME("Stub: %p\n", pPrinterNotifyInfo);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-07-18 15:13:31 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* string_to_buf
|
|
|
|
*
|
|
|
|
* Copies a unicode string into a buffer. The buffer will either contain unicode or
|
|
|
|
* ansi depending on the unicode parameter.
|
|
|
|
*/
|
|
|
|
static BOOL string_to_buf(LPCWSTR str, LPBYTE ptr, DWORD cb, DWORD *size, BOOL unicode)
|
|
|
|
{
|
|
|
|
if(!str)
|
|
|
|
{
|
|
|
|
*size = 0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(unicode)
|
|
|
|
{
|
|
|
|
*size = (strlenW(str) + 1) * sizeof(WCHAR);
|
|
|
|
if(*size <= cb)
|
|
|
|
{
|
|
|
|
memcpy(ptr, str, *size);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
|
|
|
|
if(*size <= cb)
|
|
|
|
{
|
2005-08-19 12:04:03 +02:00
|
|
|
WideCharToMultiByte(CP_ACP, 0, str, -1, (LPSTR)ptr, *size, NULL, NULL);
|
2005-07-18 15:13:31 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* get_job_info_1
|
|
|
|
*/
|
|
|
|
static BOOL get_job_info_1(job_t *job, JOB_INFO_1W *ji1, LPBYTE buf, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, BOOL unicode)
|
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
|
|
|
if(space)
|
|
|
|
{
|
|
|
|
ji1->JobId = job->job_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
string_to_buf(job->document_title, ptr, left, &size, unicode);
|
|
|
|
if(space && size <= left)
|
|
|
|
{
|
|
|
|
ji1->pDocument = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* get_job_info_2
|
|
|
|
*/
|
|
|
|
static BOOL get_job_info_2(job_t *job, JOB_INFO_2W *ji2, LPBYTE buf, DWORD cbBuf,
|
|
|
|
LPDWORD pcbNeeded, BOOL unicode)
|
|
|
|
{
|
|
|
|
DWORD size, left = cbBuf;
|
|
|
|
BOOL space = (cbBuf > 0);
|
|
|
|
LPBYTE ptr = buf;
|
|
|
|
|
|
|
|
*pcbNeeded = 0;
|
|
|
|
|
|
|
|
if(space)
|
|
|
|
{
|
|
|
|
ji2->JobId = job->job_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
string_to_buf(job->document_title, ptr, left, &size, unicode);
|
|
|
|
if(space && size <= left)
|
|
|
|
{
|
|
|
|
ji2->pDocument = (LPWSTR)ptr;
|
|
|
|
ptr += size;
|
|
|
|
left -= size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
space = FALSE;
|
|
|
|
*pcbNeeded += size;
|
|
|
|
|
|
|
|
return space;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* get_job_info
|
|
|
|
*/
|
|
|
|
static BOOL get_job_info(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob,
|
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded, BOOL unicode)
|
|
|
|
{
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
DWORD needed = 0, size;
|
|
|
|
job_t *job;
|
|
|
|
LPBYTE ptr = pJob;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("%p %d %d %p %d %p\n", hPrinter, JobId, Level, pJob, cbBuf, pcbNeeded);
|
2005-07-18 15:13:31 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
job = get_job(hPrinter, JobId);
|
|
|
|
if(!job)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
switch(Level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
size = sizeof(JOB_INFO_1W);
|
|
|
|
if(cbBuf >= size)
|
|
|
|
{
|
|
|
|
cbBuf -= size;
|
|
|
|
ptr += size;
|
|
|
|
memset(pJob, 0, size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cbBuf = 0;
|
|
|
|
ret = get_job_info_1(job, (JOB_INFO_1W *)pJob, ptr, cbBuf, &needed, unicode);
|
|
|
|
needed += size;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
size = sizeof(JOB_INFO_2W);
|
|
|
|
if(cbBuf >= size)
|
|
|
|
{
|
|
|
|
cbBuf -= size;
|
|
|
|
ptr += size;
|
|
|
|
memset(pJob, 0, size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cbBuf = 0;
|
|
|
|
ret = get_job_info_2(job, (JOB_INFO_2W *)pJob, ptr, cbBuf, &needed, unicode);
|
|
|
|
needed += size;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
size = sizeof(JOB_INFO_3);
|
|
|
|
if(cbBuf >= size)
|
|
|
|
{
|
|
|
|
cbBuf -= size;
|
|
|
|
memset(pJob, 0, size);
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cbBuf = 0;
|
|
|
|
needed = size;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
SetLastError(ERROR_INVALID_LEVEL);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if(pcbNeeded)
|
|
|
|
*pcbNeeded = needed;
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* GetJobA [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetJobA(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob,
|
2005-07-18 15:13:31 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2005-07-18 15:13:31 +02:00
|
|
|
return get_job_info(hPrinter, JobId, Level, pJob, cbBuf, pcbNeeded, FALSE);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* GetJobW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetJobW(HANDLE hPrinter, DWORD JobId, DWORD Level, LPBYTE pJob,
|
2005-07-18 15:13:31 +02:00
|
|
|
DWORD cbBuf, LPDWORD pcbNeeded)
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
{
|
2005-07-18 15:13:31 +02:00
|
|
|
return get_job_info(hPrinter, JobId, Level, pJob, cbBuf, pcbNeeded, TRUE);
|
Stub implementations for AddMonitorW, DeletePrinterDriverW,
DeleteMonitorW, DeletePortW, GetPrintProcessorDirectoryW,
AddPrintProcessor{A,W}, AddPrintProvidor{A,W},
AdvancedDocumentProperties{A,W}, EnumPortsW, AddPort{A,W},
ConfigurePort{A,W}, DeletePrintProcessor{A,W},
DeletePrintProvidor{A,W}, EnumPrintProcessorDatatypes{A,W},
GetJob{A,W}.
2005-01-03 21:24:39 +01:00
|
|
|
}
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
|
2005-07-10 19:39:01 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* schedule_lpr
|
|
|
|
*/
|
|
|
|
static BOOL schedule_lpr(LPCWSTR printer_name, LPCWSTR filename)
|
|
|
|
{
|
|
|
|
char *unixname, *queue, *cmd;
|
|
|
|
char fmt[] = "lpr -P%s %s";
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if(!(unixname = wine_get_unix_file_name(filename)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, printer_name, -1, NULL, 0, NULL, NULL);
|
|
|
|
queue = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, printer_name, -1, queue, len, NULL, NULL);
|
|
|
|
|
|
|
|
cmd = HeapAlloc(GetProcessHeap(), 0, strlen(unixname) + len + sizeof(fmt) - 5);
|
|
|
|
sprintf(cmd, fmt, queue, unixname);
|
|
|
|
|
|
|
|
TRACE("printing with: %s\n", cmd);
|
|
|
|
system(cmd);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, cmd);
|
|
|
|
HeapFree(GetProcessHeap(), 0, queue);
|
|
|
|
HeapFree(GetProcessHeap(), 0, unixname);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-07-11 15:21:48 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* schedule_cups
|
|
|
|
*/
|
2005-07-15 11:55:23 +02:00
|
|
|
static BOOL schedule_cups(LPCWSTR printer_name, LPCWSTR filename, LPCWSTR document_title)
|
2005-07-11 15:21:48 +02:00
|
|
|
{
|
2007-07-02 17:30:44 +02:00
|
|
|
#ifdef SONAME_LIBCUPS
|
2005-07-11 15:21:48 +02:00
|
|
|
if(pcupsPrintFile)
|
|
|
|
{
|
2005-07-15 11:55:23 +02:00
|
|
|
char *unixname, *queue, *doc_titleA;
|
2005-07-11 15:21:48 +02:00
|
|
|
DWORD len;
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
if(!(unixname = wine_get_unix_file_name(filename)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, printer_name, -1, NULL, 0, NULL, NULL);
|
|
|
|
queue = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, printer_name, -1, queue, len, NULL, NULL);
|
|
|
|
|
2005-07-15 11:55:23 +02:00
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, document_title, -1, NULL, 0, NULL, NULL);
|
|
|
|
doc_titleA = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, document_title, -1, doc_titleA, len, NULL, NULL);
|
|
|
|
|
2005-07-11 15:21:48 +02:00
|
|
|
TRACE("printing via cups\n");
|
2005-07-15 11:55:23 +02:00
|
|
|
ret = pcupsPrintFile(queue, unixname, doc_titleA, 0, NULL);
|
|
|
|
HeapFree(GetProcessHeap(), 0, doc_titleA);
|
2005-07-11 15:21:48 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, queue);
|
|
|
|
HeapFree(GetProcessHeap(), 0, unixname);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
return schedule_lpr(printer_name, filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-12 19:01:44 +02:00
|
|
|
INT_PTR CALLBACK file_dlg_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
|
|
|
|
{
|
|
|
|
LPWSTR filename;
|
|
|
|
|
|
|
|
switch(msg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
SetWindowLongPtrW(hwnd, DWLP_USER, lparam);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
if(HIWORD(wparam) == BN_CLICKED)
|
|
|
|
{
|
|
|
|
if(LOWORD(wparam) == IDOK)
|
|
|
|
{
|
|
|
|
HANDLE hf;
|
2005-07-22 20:28:12 +02:00
|
|
|
DWORD len = SendDlgItemMessageW(hwnd, EDITBOX, WM_GETTEXTLENGTH, 0, 0);
|
2005-07-12 19:01:44 +02:00
|
|
|
LPWSTR *output;
|
|
|
|
|
|
|
|
filename = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
|
|
|
|
GetDlgItemTextW(hwnd, EDITBOX, filename, len + 1);
|
2005-07-22 20:28:12 +02:00
|
|
|
|
2005-07-12 19:01:44 +02:00
|
|
|
if(GetFileAttributesW(filename) != INVALID_FILE_ATTRIBUTES)
|
|
|
|
{
|
|
|
|
WCHAR caption[200], message[200];
|
|
|
|
int mb_ret;
|
|
|
|
|
|
|
|
LoadStringW(WINSPOOL_hInstance, IDS_CAPTION, caption, sizeof(caption) / sizeof(WCHAR));
|
|
|
|
LoadStringW(WINSPOOL_hInstance, IDS_FILE_EXISTS, message, sizeof(message) / sizeof(WCHAR));
|
|
|
|
mb_ret = MessageBoxW(hwnd, message, caption, MB_OKCANCEL | MB_ICONEXCLAMATION);
|
|
|
|
if(mb_ret == IDCANCEL)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, filename);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hf = CreateFileW(filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
if(hf == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
WCHAR caption[200], message[200];
|
|
|
|
|
|
|
|
LoadStringW(WINSPOOL_hInstance, IDS_CAPTION, caption, sizeof(caption) / sizeof(WCHAR));
|
|
|
|
LoadStringW(WINSPOOL_hInstance, IDS_CANNOT_OPEN, message, sizeof(message) / sizeof(WCHAR));
|
|
|
|
MessageBoxW(hwnd, message, caption, MB_OK | MB_ICONEXCLAMATION);
|
|
|
|
HeapFree(GetProcessHeap(), 0, filename);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
CloseHandle(hf);
|
|
|
|
DeleteFileW(filename);
|
|
|
|
output = (LPWSTR *)GetWindowLongPtrW(hwnd, DWLP_USER);
|
|
|
|
*output = filename;
|
|
|
|
EndDialog(hwnd, IDOK);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if(LOWORD(wparam) == IDCANCEL)
|
|
|
|
{
|
|
|
|
EndDialog(hwnd, IDCANCEL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-07-22 20:28:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* get_filename
|
|
|
|
*/
|
|
|
|
static BOOL get_filename(LPWSTR *filename)
|
|
|
|
{
|
|
|
|
return DialogBoxParamW(WINSPOOL_hInstance, MAKEINTRESOURCEW(FILENAME_DIALOG), GetForegroundWindow(),
|
|
|
|
file_dlg_proc, (LPARAM)filename) == IDOK;
|
|
|
|
}
|
|
|
|
|
2005-07-12 19:01:44 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* schedule_file
|
|
|
|
*/
|
|
|
|
static BOOL schedule_file(LPCWSTR filename)
|
|
|
|
{
|
|
|
|
LPWSTR output = NULL;
|
|
|
|
|
2005-07-22 20:28:12 +02:00
|
|
|
if(get_filename(&output))
|
2005-07-12 19:01:44 +02:00
|
|
|
{
|
|
|
|
TRACE("copy to %s\n", debugstr_w(output));
|
|
|
|
CopyFileW(filename, output, FALSE);
|
|
|
|
HeapFree(GetProcessHeap(), 0, output);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-07-20 19:48:53 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* schedule_pipe
|
|
|
|
*/
|
|
|
|
static BOOL schedule_pipe(LPCWSTR cmd, LPCWSTR filename)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_FORK
|
|
|
|
char *unixname, *cmdA;
|
|
|
|
DWORD len;
|
|
|
|
int fds[2] = {-1, -1}, file_fd = -1, no_read;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
if(!(unixname = wine_get_unix_file_name(filename)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, cmd, -1, NULL, 0, NULL, NULL);
|
|
|
|
cmdA = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, cmd, -1, cmdA, len, NULL, NULL);
|
|
|
|
|
|
|
|
TRACE("printing with: %s\n", cmdA);
|
|
|
|
|
|
|
|
if((file_fd = open(unixname, O_RDONLY)) == -1)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
if (pipe(fds))
|
|
|
|
{
|
|
|
|
ERR("pipe() failed!\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fork() == 0)
|
|
|
|
{
|
|
|
|
close(0);
|
|
|
|
dup2(fds[0], 0);
|
|
|
|
close(fds[1]);
|
|
|
|
|
|
|
|
/* reset signals that we previously set to SIG_IGN */
|
|
|
|
signal(SIGPIPE, SIG_DFL);
|
|
|
|
signal(SIGCHLD, SIG_DFL);
|
|
|
|
|
2007-02-28 21:04:54 +01:00
|
|
|
execl("/bin/sh", "/bin/sh", "-c", cmdA, (char*)0);
|
|
|
|
_exit(1);
|
2005-07-20 19:48:53 +02:00
|
|
|
}
|
|
|
|
|
2006-04-08 19:17:06 +02:00
|
|
|
while((no_read = read(file_fd, buf, sizeof(buf))) > 0)
|
2005-07-20 19:48:53 +02:00
|
|
|
write(fds[1], buf, no_read);
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
end:
|
|
|
|
if(file_fd != -1) close(file_fd);
|
|
|
|
if(fds[0] != -1) close(fds[0]);
|
|
|
|
if(fds[1] != -1) close(fds[1]);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, cmdA);
|
|
|
|
HeapFree(GetProcessHeap(), 0, unixname);
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* schedule_unixfile
|
|
|
|
*/
|
|
|
|
static BOOL schedule_unixfile(LPCWSTR output, LPCWSTR filename)
|
|
|
|
{
|
|
|
|
int in_fd, out_fd, no_read;
|
|
|
|
char buf[1024];
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
char *unixname, *outputA;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if(!(unixname = wine_get_unix_file_name(filename)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = WideCharToMultiByte(CP_ACP, 0, output, -1, NULL, 0, NULL, NULL);
|
|
|
|
outputA = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, output, -1, outputA, len, NULL, NULL);
|
|
|
|
|
|
|
|
out_fd = open(outputA, O_CREAT | O_TRUNC | O_WRONLY, 0666);
|
|
|
|
in_fd = open(unixname, O_RDONLY);
|
|
|
|
if(out_fd == -1 || in_fd == -1)
|
|
|
|
goto end;
|
|
|
|
|
2006-04-08 19:17:06 +02:00
|
|
|
while((no_read = read(in_fd, buf, sizeof(buf))) > 0)
|
2005-07-20 19:48:53 +02:00
|
|
|
write(out_fd, buf, no_read);
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
end:
|
|
|
|
if(in_fd != -1) close(in_fd);
|
|
|
|
if(out_fd != -1) close(out_fd);
|
|
|
|
HeapFree(GetProcessHeap(), 0, outputA);
|
|
|
|
HeapFree(GetProcessHeap(), 0, unixname);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* ScheduleJob [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ScheduleJob( HANDLE hPrinter, DWORD dwJobID )
|
|
|
|
{
|
2005-07-06 17:44:15 +02:00
|
|
|
opened_printer_t *printer;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
struct list *cursor, *cursor2;
|
|
|
|
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("(%p, %x)\n", hPrinter, dwJobID);
|
2005-07-06 17:44:15 +02:00
|
|
|
EnterCriticalSection(&printer_handles_cs);
|
|
|
|
printer = get_opened_printer(hPrinter);
|
|
|
|
if(!printer)
|
|
|
|
goto end;
|
|
|
|
|
2005-07-19 21:12:13 +02:00
|
|
|
LIST_FOR_EACH_SAFE(cursor, cursor2, &printer->queue->jobs)
|
2005-07-06 17:44:15 +02:00
|
|
|
{
|
|
|
|
job_t *job = LIST_ENTRY(cursor, job_t, entry);
|
|
|
|
HANDLE hf;
|
|
|
|
|
|
|
|
if(job->job_id != dwJobID) continue;
|
|
|
|
|
|
|
|
hf = CreateFileW(job->filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
if(hf != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2005-07-10 19:39:01 +02:00
|
|
|
PRINTER_INFO_5W *pi5;
|
|
|
|
DWORD needed;
|
2005-07-20 19:48:53 +02:00
|
|
|
HKEY hkey;
|
|
|
|
WCHAR output[1024];
|
|
|
|
static const WCHAR spooler_key[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
|
|
|
|
'P','r','i','n','t','i','n','g','\\','S','p','o','o','l','e','r',0};
|
2005-07-10 19:39:01 +02:00
|
|
|
|
|
|
|
GetPrinterW(hPrinter, 5, NULL, 0, &needed);
|
|
|
|
pi5 = HeapAlloc(GetProcessHeap(), 0, needed);
|
|
|
|
GetPrinterW(hPrinter, 5, (LPBYTE)pi5, needed, &needed);
|
2006-10-13 11:51:23 +02:00
|
|
|
TRACE("need to schedule job %d filename %s to port %s\n", job->job_id, debugstr_w(job->filename),
|
2005-07-10 19:39:01 +02:00
|
|
|
debugstr_w(pi5->pPortName));
|
|
|
|
|
2005-07-20 19:48:53 +02:00
|
|
|
output[0] = 0;
|
|
|
|
|
|
|
|
/* @@ Wine registry key: HKCU\Software\Wine\Printing\Spooler */
|
|
|
|
if(RegOpenKeyW(HKEY_CURRENT_USER, spooler_key, &hkey) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
DWORD type, count = sizeof(output);
|
|
|
|
RegQueryValueExW(hkey, pi5->pPortName, NULL, &type, (LPBYTE)output, &count);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
if(output[0] == '|')
|
|
|
|
{
|
|
|
|
schedule_pipe(output + 1, job->filename);
|
|
|
|
}
|
|
|
|
else if(output[0])
|
|
|
|
{
|
|
|
|
schedule_unixfile(output, job->filename);
|
|
|
|
}
|
|
|
|
else if(!strncmpW(pi5->pPortName, LPR_Port, strlenW(LPR_Port)))
|
2005-07-10 19:39:01 +02:00
|
|
|
{
|
|
|
|
schedule_lpr(pi5->pPortName + strlenW(LPR_Port), job->filename);
|
|
|
|
}
|
2005-07-11 15:21:48 +02:00
|
|
|
else if(!strncmpW(pi5->pPortName, CUPS_Port, strlenW(CUPS_Port)))
|
|
|
|
{
|
2005-07-15 11:55:23 +02:00
|
|
|
schedule_cups(pi5->pPortName + strlenW(CUPS_Port), job->filename, job->document_title);
|
2005-07-11 15:21:48 +02:00
|
|
|
}
|
2005-07-12 19:01:44 +02:00
|
|
|
else if(!strncmpW(pi5->pPortName, FILE_Port, strlenW(FILE_Port)))
|
|
|
|
{
|
|
|
|
schedule_file(job->filename);
|
|
|
|
}
|
2005-07-10 19:39:01 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("can't schedule to port %s\n", debugstr_w(pi5->pPortName));
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi5);
|
2005-07-06 17:44:15 +02:00
|
|
|
CloseHandle(hf);
|
|
|
|
DeleteFileW(job->filename);
|
|
|
|
}
|
|
|
|
list_remove(cursor);
|
2005-07-13 16:14:37 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, job->document_title);
|
2005-07-06 17:44:15 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, job->filename);
|
|
|
|
HeapFree(GetProcessHeap(), 0, job);
|
|
|
|
ret = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection(&printer_handles_cs);
|
|
|
|
return ret;
|
Stub implementations for AbortPrinter, AddPortEx{A,W},
AddPrinterConnection{A,W}, ConnectToPrinterDlg,
DeletePrinterConnection{A,W}, EnumForms{A,W}, EnumPrinterData{A,W],
ExtDeviceMode, Find{Close,First,Next}PrinterChangeNotification,
FreePrinterNotifyInfo, ScheduleJob.
2005-02-21 19:33:55 +01:00
|
|
|
}
|
2005-07-22 20:28:12 +02:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* StartDocDlgA [WINSPOOL.@]
|
|
|
|
*/
|
2006-10-06 14:25:54 +02:00
|
|
|
LPSTR WINAPI StartDocDlgA( HANDLE hPrinter, DOCINFOA *doc )
|
2005-07-22 20:28:12 +02:00
|
|
|
{
|
|
|
|
UNICODE_STRING usBuffer;
|
|
|
|
DOCINFOW docW;
|
|
|
|
LPWSTR retW;
|
2006-10-06 14:25:54 +02:00
|
|
|
LPWSTR docnameW = NULL, outputW = NULL, datatypeW = NULL;
|
2005-07-22 20:28:12 +02:00
|
|
|
LPSTR ret = NULL;
|
|
|
|
|
|
|
|
docW.cbSize = sizeof(docW);
|
2006-10-06 14:25:54 +02:00
|
|
|
if (doc->lpszDocName)
|
|
|
|
{
|
|
|
|
docnameW = asciitounicode(&usBuffer, doc->lpszDocName);
|
|
|
|
if (!(docW.lpszDocName = docnameW)) return NULL;
|
|
|
|
}
|
|
|
|
if (doc->lpszOutput)
|
|
|
|
{
|
|
|
|
outputW = asciitounicode(&usBuffer, doc->lpszOutput);
|
|
|
|
if (!(docW.lpszOutput = outputW)) return NULL;
|
|
|
|
}
|
|
|
|
if (doc->lpszDatatype)
|
|
|
|
{
|
|
|
|
datatypeW = asciitounicode(&usBuffer, doc->lpszDatatype);
|
|
|
|
if (!(docW.lpszDatatype = datatypeW)) return NULL;
|
|
|
|
}
|
2005-07-22 20:28:12 +02:00
|
|
|
docW.fwType = doc->fwType;
|
|
|
|
|
|
|
|
retW = StartDocDlgW(hPrinter, &docW);
|
|
|
|
|
|
|
|
if(retW)
|
|
|
|
{
|
|
|
|
DWORD len = WideCharToMultiByte(CP_ACP, 0, retW, -1, NULL, 0, NULL, NULL);
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, retW, -1, ret, len, NULL, NULL);
|
|
|
|
HeapFree(GetProcessHeap(), 0, retW);
|
|
|
|
}
|
|
|
|
|
2006-10-06 14:25:54 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, datatypeW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, outputW);
|
|
|
|
HeapFree(GetProcessHeap(), 0, docnameW);
|
2005-07-22 20:28:12 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* StartDocDlgW [WINSPOOL.@]
|
|
|
|
*
|
|
|
|
* Undocumented: Apparently used by gdi32:StartDocW() to popup the file dialog
|
|
|
|
* when lpszOutput is "FILE:" or if lpszOutput is NULL and the default printer
|
|
|
|
* port is "FILE:". Also returns the full path if passed a relative path.
|
|
|
|
*
|
|
|
|
* The caller should free the returned string from the process heap.
|
|
|
|
*/
|
|
|
|
LPWSTR WINAPI StartDocDlgW( HANDLE hPrinter, DOCINFOW *doc )
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
DWORD len, attr;
|
|
|
|
|
|
|
|
if(doc->lpszOutput == NULL) /* Check whether default port is FILE: */
|
|
|
|
{
|
|
|
|
PRINTER_INFO_5W *pi5;
|
|
|
|
GetPrinterW(hPrinter, 5, NULL, 0, &len);
|
|
|
|
if(GetLastError() != ERROR_INSUFFICIENT_BUFFER)
|
|
|
|
return NULL;
|
|
|
|
pi5 = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
GetPrinterW(hPrinter, 5, (LPBYTE)pi5, len, &len);
|
|
|
|
if(!pi5->pPortName || strcmpW(pi5->pPortName, FILE_Port))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi5);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, pi5);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(doc->lpszOutput == NULL || !strcmpW(doc->lpszOutput, FILE_Port))
|
|
|
|
{
|
|
|
|
LPWSTR name;
|
2007-01-11 10:19:58 +01:00
|
|
|
|
|
|
|
if (get_filename(&name))
|
2005-07-22 20:28:12 +02:00
|
|
|
{
|
|
|
|
if(!(len = GetFullPathNameW(name, 0, NULL, NULL)))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
GetFullPathNameW(name, len, ret, NULL);
|
|
|
|
HeapFree(GetProcessHeap(), 0, name);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!(len = GetFullPathNameW(doc->lpszOutput, 0, NULL, NULL)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
GetFullPathNameW(doc->lpszOutput, len, ret, NULL);
|
|
|
|
|
|
|
|
attr = GetFileAttributesW(ret);
|
|
|
|
if(attr != INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_DIRECTORY))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, ret);
|
|
|
|
ret = NULL;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|