mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-01 15:30:43 +02:00
* PChar -> PAnsiChar
This commit is contained in:
parent
395ff00f9c
commit
62086bfc99
@ -70,12 +70,12 @@ Const
|
||||
P_TOP = 3; { Print to Pipe }
|
||||
|
||||
Var
|
||||
Lpr : String[255]; { Contains path to lpr binary, including null char }
|
||||
Lpr : String[255]; { Contains path to lpr binary, including null AnsiChar }
|
||||
|
||||
Procedure PrintAndDelete (const f: RawByteString);
|
||||
var
|
||||
i: pid_t;
|
||||
p,pp : ppchar;
|
||||
p,pp : PPAnsiChar;
|
||||
begin
|
||||
if lpr='' then
|
||||
exit;
|
||||
@ -206,7 +206,7 @@ end;
|
||||
|
||||
|
||||
|
||||
function SubstPidInName (const S: string): string;
|
||||
function SubstPidInName (const S: rawbytestring): rawbytestring;
|
||||
var
|
||||
i : longint;
|
||||
temp : string[8];
|
||||
|
Loading…
Reference in New Issue
Block a user