We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7062a4 commit c7b499bCopy full SHA for c7b499b
1 file changed
Examples/Calculator/Calculator_component/Examples/Pascal/Calculator_Example.lpr
@@ -47,8 +47,8 @@ procedure TCalculator_Example.TestCalculator ();
47
ACalculator: TCalculatorCalculator;
48
begin
49
writeln ('loading DLL');
50
- ALibPath := ''; // TODO add the location of the shared library binary here
51
- ACalculatorWrapper := TCalculatorWrapper.Create (ALibPath + '/' + 'calculator.'); // TODO add the extension of the shared library file here
+ ALibPath := '.'; // TODO add the location of the shared library binary here
+ ACalculatorWrapper := TCalculatorWrapper.Create (ALibPath + '/' + 'calculator.dll'); // TODO add the extension of the shared library file here
52
try
53
writeln ('loading DLL Done');
54
ACalculatorWrapper.GetVersion(AMajor, AMinor, AMicro);
0 commit comments