winspool.drv: Allow spooling directly to a postscript file.
Required for PDF printing in OrCAD 16.6.
This commit is contained in:
parent
42724f3d50
commit
126f0601e2
|
@ -8432,6 +8432,11 @@ BOOL WINAPI ScheduleJob( HANDLE hPrinter, DWORD dwJobID )
|
||||||
{
|
{
|
||||||
ret = schedule_file(job->filename);
|
ret = schedule_file(job->filename);
|
||||||
}
|
}
|
||||||
|
else if(isalpha(portname[0]) && portname[1] == ':')
|
||||||
|
{
|
||||||
|
TRACE("copying to %s\n", debugstr_w(portname));
|
||||||
|
ret = CopyFileW(job->filename, portname, FALSE);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FIXME("can't schedule to port %s\n", debugstr_w(portname));
|
FIXME("can't schedule to port %s\n", debugstr_w(portname));
|
||||||
|
|
Loading…
Reference in New Issue