search for: psdrv_heap

Displaying 2 results from an estimated 2 matches for "psdrv_heap".

2010 Jul 07
3
Message: "err:psdrv:PSDRV_PPDGetNextTuple Line too long."
...{ 00391 while(isspace(*cp)) 00392 cp++; 00393 if(*cp == ':') { /* <key> : */ 00394 gotoption = FALSE; 00395 } else { /* <key> <option> */ 00396 opt = cp; 00397 } 00398 } 00399 00400 tuple->key = HeapAlloc( PSDRV_Heap, 0, endkey - line + 1 ); 00401 if(!tuple->key) return FALSE; 00402 00403 memcpy(tuple->key, line, endkey - line); 00404 tuple->key[endkey - line] = '\0'; 00405 00406 if(gotoption) { /* opt points to 1st non-space character of the option */ 00407 cp = strpb...
2001 Mar 12
1
WINEPS insists on using LPT1:
I'm running Wine 20010305. I am using the WINEPS driver and trying to direct it to various printers on various ports. It seems to output to port LPT1 regardless of the port I specify in the registry and win.ini. Here is a simplified scenario, in which I define only one printer, on LPT2. Can any one tell me what is happening? Follow-up question: Am I limited to 9 printers, on LPT1-LPT9?