Browse Source

* export function so ppl can use it in their own programs

peter 25 years ago
parent
commit
2c081cf333
1 changed files with 8 additions and 2 deletions
  1. 8 2
      rtl/inc/lineinfo.pp

+ 8 - 2
rtl/inc/lineinfo.pp

@@ -24,6 +24,9 @@ interface
   from inside the RTE 202 error PM }
 {$S-}
 
+procedure GetLineInfo(addr:longint;var func,source:string;var line:longint);
+
+
 implementation
 
 uses
@@ -626,7 +629,10 @@ finalization
 end.
 {
   $Log$
-  Revision 1.9  2000-04-20 13:03:41  pierre
+  Revision 1.10  2000-05-08 13:23:46  peter
+    * export function so ppl can use it in their own programs
+
+  Revision 1.9  2000/04/20 13:03:41  pierre
    * disable stack check in lineinfo
 
   Revision 1.8  2000/04/12 11:15:06  pierre
@@ -653,4 +659,4 @@ end.
   Revision 1.1  2000/02/06 17:19:22  peter
     * lineinfo unit added which uses stabs to get lineinfo for backtraces
 
-}
+}