blob: 946fb84a23ece071e3c110421425ddf117322646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{$mode delphi}
unit uw4352d;
interface
uses
uw4352b, SysUtils;
type
TIdSysWin32 = class(TIdSysNativeVCL)
public
class function Win32MajorVersion : Integer;
end;
implementation
uses uw4352e; // commenting this helps.
class function TIdSysWin32.Win32MajorVersion: Integer;
begin
Result := 100;
end;
end.
|