C# で記述されたプリント サーバー ソフトウェアがいくつかあります (これは winspool.drv から P/Invokes 機能を実行します)。一部の「プリンター」は、実際にはディレクトリに印刷する仮想プリンターです。このようなプリンターをインストールするコードは次のとおりです。
public override void AddLocalDirectoryPrinter(string printerName, string directory)
{
IntPtr hPrinter = IntPtr.Zero;
try
{
PRINTER_DEFAULTS pd;
PRINTER_INFO_2 pi2;
pd.datatype = null;
pd.pDevMode = IntPtr.Zero;
// Access = PRINTER_ALL_ACCESS
// http://msdn.microsoft.com/en-us/library/cc244650%28v=prot.10%29.aspx
pd.desiredAccess = PRINTER_ALL_ACCESS;
// Attributes = PUBLISHED | DO_COMPLETE_FIRST | SHARED
// http://msdn.microsoft.com/en-us/library/aa394363%28v=vs.85%29.aspx
pi2.attributes = 0x2208;
pi2.averagePpm = 0;
pi2.jobs = 0;
pi2.defaultPriority = 0;
pi2.comment = "Auto-Generated by [name of program]";
pi2.datatype = "RAW";
pi2.pDevMode = IntPtr.Zero;
pi2.driverName = "Generic / Text Only";
pi2.location = string.Empty;
pi2.parameters = string.Empty;
pi2.portName = directory;
pi2.printerName = printerName.ToUpperInvariant();
pi2.printProcessor = "WinPrint";
pi2.priority = 0;
pi2.pSecurityDescriptor = IntPtr.Zero;
pi2.sepFile = string.Empty;
pi2.serverName = string.Empty;
pi2.shareName = printerName.ToUpperInvariant();
pi2.startTime = 0;
pi2.status = 0;
pi2.untilTime = 0;
hPrinter = AddPrinter(null, 2, ref pi2);
if (hPrinter == IntPtr.Zero)
{
throw new Win32Exception(Marshal.GetLastWin32Error());
}
}
catch (Exception ex)
{
throw new PrintingException("Failed to add printer", ex);
}
finally
{
if (hPrinter != IntPtr.Zero)
{
ClosePrinter(hPrinter);
}
}
}
32 ビット Windows XP では、上記のコードはエラーなしで実行されます。ただし、64 ビットの Windows 7 では、AddPrinterの呼び出しは Windows エラー 1796 (「指定されたポートは不明です」) で失敗します。
あるバージョンの Windows では機能するのに、別のバージョンでは機能しないのはなぜですか?