mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-29 10:00:31 +02:00
* Do not use console I/O in DLL on wince.
git-svn-id: trunk@10747 -
This commit is contained in:
parent
0d533a1f1e
commit
c0e760ef3c
@ -6,5 +6,7 @@ uses
|
|||||||
uw6822a;
|
uw6822a;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
{$ifndef wince}
|
||||||
writeln('hello from library');
|
writeln('hello from library');
|
||||||
|
{$endif wince}
|
||||||
end.
|
end.
|
||||||
|
@ -9,11 +9,15 @@ var
|
|||||||
t: text;
|
t: text;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
{$ifndef wince}
|
||||||
writeln('Unit 1');
|
writeln('Unit 1');
|
||||||
writeln('initialization');
|
writeln('initialization');
|
||||||
|
{$endif wince}
|
||||||
finalization
|
finalization
|
||||||
|
{$ifndef wince}
|
||||||
writeln('Unit 1'); // problem
|
writeln('Unit 1'); // problem
|
||||||
writeln('finalization');
|
writeln('finalization');
|
||||||
|
{$endif wince}
|
||||||
assign(t,'uw6822a.txt');
|
assign(t,'uw6822a.txt');
|
||||||
rewrite(t);
|
rewrite(t);
|
||||||
close(t);
|
close(t);
|
||||||
|
Loading…
Reference in New Issue
Block a user