blob: 0d147657560bfb1c80d23e1784312e1e8d81ab1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ %target=win32}
{ Source provided for Free Pascal Bug Report 3820 }
{ Submitted by "Matthias Hryniszak" on 2005-03-24 }
{ e-mail: matthias@hryniszak.de }
program Test;
uses
ActiveX;
begin
// the following imports are missing:
OleInitialize(nil);
OleUninitialize;
end.
|