blob: 876c3b3b523a1389114ec0c8d0a15fbd5041c819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{$MODE DELPHI}
unit tw7329;
interface
type
IDirect3D9 = interface(IUnknown) end;
// IDirect3D9 = Integer; //todo: Uncomment this line and comment previous one to successfully compile with 2.0.4
function Direct3DCreate9(SDKVersion: LongWord): IDirect3D9; stdcall;
implementation
function Direct3DCreate9(SDKVersion: LongWord): IDirect3D9;
begin
end;
end.
|