mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:07:54 +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;
|
||||
|
||||
begin
|
||||
{$ifndef wince}
|
||||
writeln('hello from library');
|
||||
{$endif wince}
|
||||
end.
|
||||
|
@ -9,11 +9,15 @@ var
|
||||
t: text;
|
||||
|
||||
initialization
|
||||
{$ifndef wince}
|
||||
writeln('Unit 1');
|
||||
writeln('initialization');
|
||||
{$endif wince}
|
||||
finalization
|
||||
{$ifndef wince}
|
||||
writeln('Unit 1'); // problem
|
||||
writeln('finalization');
|
||||
{$endif wince}
|
||||
assign(t,'uw6822a.txt');
|
||||
rewrite(t);
|
||||
close(t);
|
||||
|
Loading…
Reference in New Issue
Block a user