2 * Implementation of the Spooler Setup API (Printing)
4 * Copyright 2007 Detlef Riekenberg
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
33 #include "wine/unicode.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(ntprint
);
39 LPMONITOR_INFO_2W mi2
; /* Buffer for installed Monitors */
40 DWORD installed
; /* Number of installed Monitors */
43 /*****************************************************
46 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
48 TRACE("(%p, %d, %p)\n",hinstDLL
, fdwReason
, lpvReserved
);
52 case DLL_WINE_PREATTACH
:
53 return FALSE
; /* prefer native version */
55 case DLL_PROCESS_ATTACH
:
56 DisableThreadLibraryCalls( hinstDLL
);
62 /*****************************************************
63 * PSetupCreateMonitorInfo [NTPRINT.@]
68 HANDLE WINAPI
PSetupCreateMonitorInfo(DWORD unknown1
, WCHAR
*server
)
70 monitorinfo_t
* mi
=NULL
;
74 TRACE("(%d, %s)\n", unknown1
, debugstr_w(server
));
76 mi
= HeapAlloc(GetProcessHeap(), 0, sizeof(monitorinfo_t
));
78 /* FIXME: SetLastError() needed? */
82 /* Get the needed size for all Monitors */
83 res
= EnumMonitorsW(server
, 2, NULL
, 0, &needed
, &mi
->installed
);
84 if (!res
&& (GetLastError() == ERROR_INSUFFICIENT_BUFFER
)) {
85 mi
->mi2
= HeapAlloc(GetProcessHeap(), 0, needed
);
86 res
= EnumMonitorsW(server
, 2, (LPBYTE
) mi
->mi2
, needed
, &needed
, &mi
->installed
);
90 HeapFree(GetProcessHeap(), 0, mi
);
94 TRACE("=> %p (%u monitors installed)\n", mi
, mi
->installed
);
98 /*****************************************************
99 * PSetupDestroyMonitorInfo [NTPRINT.@]
103 VOID WINAPI
PSetupDestroyMonitorInfo(HANDLE monitorinfo
)
105 monitorinfo_t
* mi
= monitorinfo
;
109 if (mi
->installed
) HeapFree(GetProcessHeap(), 0, mi
->mi2
);
110 HeapFree(GetProcessHeap(), 0, mi
);
114 /*****************************************************
115 * PSetupEnumMonitor [NTPRINT.@]
117 * Copy the selected Monitorname to a buffer
120 * monitorinfo [I] HANDLE from PSetupCreateMonitorInfo
121 * index [I] Nr. of the Monitorname to copy
122 * buffer [I] Target, that receive the Monitorname
123 * psize [IO] PTR to a DWORD that hold the size of the buffer and receive
124 * the needed size, when the buffer is too small
131 * size is in Bytes on w2k and WCHAR on XP
135 BOOL WINAPI
PSetupEnumMonitor(HANDLE monitorinfo
, DWORD index
, LPWSTR buffer
, LPDWORD psize
)
137 monitorinfo_t
* mi
= monitorinfo
;
141 TRACE("(%p, %u, %p, %p) => %d\n", mi
, index
, buffer
, psize
, psize
? *psize
: 0);
143 if (index
< mi
->installed
) {
144 nameW
= mi
->mi2
[index
].pName
;
145 len
= lstrlenW(nameW
) + 1;
147 memcpy(buffer
, nameW
, len
* sizeof(WCHAR
));
148 TRACE("#%u: %s\n", index
, debugstr_w(buffer
));
152 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
155 SetLastError(ERROR_NO_MORE_ITEMS
);