trace:winspool:AddPrinterA ((null),2,0x407c2c1c): stub
trace:winspool:DEVMODEdupAtoW
trace:winspool:AddPrinterW (L"",2,0x4026ac58)

Following these debug messages, we see that the name of the server on
which the server is installed changes fromNULL to "".
Currently we dont support remote printers and the the name must be NULL
otherwise
the function fails.
It lies into wine/dlls/winspool/info.c :
    if(pName != NULL) {
        ERR("pName = %s - unsupported\n", debugstr_w(pName));
        SetLastError(ERROR_INVALID_PARAMETER);
        return 0;

The file was updated to avoid HEAP_strdupAtoW calls.
Matthew, could you look at this ?

=====
Sylvain Petreolle
[EMAIL PROTECTED] 
Fight against Spam ! http://www.euro.cauce.org/en/index.html
ICQ #170597259

"Don't think you are. Know you are." Morpheus, in "Matrix".

___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com
--- Begin Message ---
When I run notepad or sthing that needs winspool I get :

err:winspool:AddPrinterW pName = L"" - unsupported
err:winspool:PRINTCAP_ParseEntry lp not added by AddPrinterA (87)

What should I do fix it ? The docu didnt help about this.
(Perhaps it should be updated, as the psdrv.reg doesnt exist anymore.)

[syl@snoop Temp]$ notepad --debugmsg +winspool
trace:winspool:AddPrinterDriverA ((null),3,0x407c2d94)
trace:winspool:WINSPOOL_OpenDriverReg (null)
trace:winspool:WINSPOOL_OpenDriverReg set environment to Windows 4.0
trace:winspool:WINSPOOL_OpenDriverReg
System\CurrentControlSet\control\Print\Environments\Windows
4.0\Drivers\
trace:winspool:PRINTCAP_ParseEntry lp
trace:winspool:PRINTCAP_ParseEntry lp has inputfilter program, assuming
postscript.
trace:winspool:AddPrinterA ((null),2,0x407c2c1c): stub
trace:winspool:DEVMODEdupAtoW
trace:winspool:AddPrinterW (L"",2,0x4026ac58)
err:winspool:AddPrinterW pName = L"" - unsupported
err:winspool:PRINTCAP_ParseEntry lp not added by AddPrinterA (87)

Reg entries about lp are Here :
[System\\CurrentControlSet\\Control\\Print\\Printers\\lp] 1036584888
"Attributes"=dword:00000000
"Datatype"="RAW"
"Default
DevMode"=hex:6c,70,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
 
00,00,00,00,00,00,00,00,00,00,00,00,00,0a,03,01,00,9c,00,08,00,13,7b,00,00,\
 
01,00,09,00,9a,0b,33,08,64,00,01,00,07,00,00,00,02,00,00,00,00,00,03,00,00,\
 
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
 
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
 
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
"Description"="WINEPS Printer using LPR"
"Location"="lp"
"Name"="lp"
"Parameters"="<parameters?>"
"Port"="LPR:lp"
"Print Processor"="WinPrint"
"Printer Driver"="PS Driver"
"Priority"=dword:00000000
"Separator File"="<sep file?>"
"Share Name"="<share name?>"
"StartTime"=dword:00000000
"Status"=dword:00000000
"UntilTime"=dword:00000000


=====
Sylvain Petreolle
[EMAIL PROTECTED] 
Fight against Spam ! http://www.euro.cauce.org/en/index.html
ICQ #170597259

"Don't think you are. Know you are." Morpheus, in "Matrix".

___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com
_______________________________________________
wine-users mailing list
[EMAIL PROTECTED]
http://www.winehq.com/mailman/listinfo/wine-users
--- End Message ---

Reply via email to