|
@@ -12,8 +12,7 @@
|
|
|
|
|
|
**********************************************************************}
|
|
|
|
|
|
-{ exceptions aren't implemented yet in the compiler }
|
|
|
-{$define NoExceptions}
|
|
|
+{$mode objfpc}
|
|
|
|
|
|
{ determine the type of the resource/form file }
|
|
|
{$define Win16Res}
|
|
@@ -22,7 +21,8 @@ unit Classes;
|
|
|
interface
|
|
|
|
|
|
uses
|
|
|
- dos,strings,sysutils;
|
|
|
+ sysutils,
|
|
|
+ strings;
|
|
|
|
|
|
{$i classesh.inc}
|
|
|
|
|
@@ -30,13 +30,18 @@ implementation
|
|
|
|
|
|
{ Read OS-dependent files }
|
|
|
{$i osfile.inc}
|
|
|
+
|
|
|
+{ Read OS-independent files }
|
|
|
{$i classes.inc}
|
|
|
|
|
|
end.
|
|
|
|
|
|
{
|
|
|
$Log$
|
|
|
- Revision 1.5 1998-10-30 14:49:03 michael
|
|
|
+ Revision 1.6 1998-11-04 10:46:44 peter
|
|
|
+ * exceptions work
|
|
|
+
|
|
|
+ Revision 1.5 1998/10/30 14:49:03 michael
|
|
|
+ Empty implementation of file functions
|
|
|
|
|
|
Revision 1.4 1998/10/26 23:01:52 florian
|