Hi!
Why is FileNameCaseSensitive set to true on Windows? Windows interprets
filenames in a case *in*sensitive manner, doesn't it?
The attached program dumps values of some of the OS dependent constants defined
in the System unit.
Regards,
Bram
program showOSconsts;
begin
WriteLn('FileNameCaseSensitive: ',FileNameCaseSensitive);
WriteLn('CtrlZMarksEOF: ',CtrlZMarksEOF);
WriteLn('Length(LineEnding): ',Length(LineEnding));
WriteLn('LFNSupport: ',LFNSupport);
WriteLn('DirectorySeparator: ',DirectorySeparator);
WriteLn('DriveSeparator: ',DriveSeparator);
WriteLn('PathSeparator: ',PathSeparator);
WriteLn('maxExitCode: ',maxExitCode);
WriteLn('MaxPathLen: ',MaxPathLen);
end.
_______________________________________________
fpc-devel maillist - fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel