浏览代码

* 'solution' for a compiler problem

Tomas Hajny 26 年之前
父节点
当前提交
46b6598b8c
共有 1 个文件被更改,包括 39 次插入4 次删除
  1. 39 4
      rtl/os2/os2def.pas

+ 39 - 4
rtl/os2/os2def.pas

@@ -1,10 +1,39 @@
 {****************************************************************************
 
-		   Copyright (c) 1993,94,99 by FK, RB
-		  
+    $Id$
+
+              Copyright (c) 1993,94 by Florian Klaempfl
+                  Copyright (c) 1999 by Ramon Bosque
+
+ The Free Pascal runtime library is distributed under the Library GNU Public
+ License v2. So is this unit. The Library GNU Public License requires you to
+ distribute the source code of this unit with any product that uses it.
+ Because the EMX library isn't under the LGPL, we grant you an exception to
+ this, and that is, when you compile a program with the Free Pascal compiler,
+ you do not need to ship source code with that program, AS LONG AS YOU ARE
+ USING UNMODIFIED CODE! If you modify this code, you MUST change the next
+ line:
+
+ <This an official, unmodified FPK Pascal source code file.>
+
+ Send us your modified files, we can work together if you want!
+
+ FPK-Pascal is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ Library GNU General Public License for more details.
+
+ You should have received a copy of the Library GNU General Public License
+ along with Free Pascal; see the file COPYING.LIB.  If not, write to
+ the Free Software Foundation, 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
  ****************************************************************************}
 unit os2def;
 
+{Warning: This code is alfa. Future versions of this unit will propably
+ not be compatible.}
+
 interface
 
 const
@@ -111,8 +140,6 @@ const
 
        PDRIVDATA = ^DRIVDATA;
 
-       PDEVOPENDATA = PDevOpenStruc;
-
        DEVOPENSTRUC = record
 	  pszLogAddress : pchar;
 	  pszDriverName : pchar;
@@ -127,6 +154,8 @@ const
 
        PDEVOPENSTRUC = ^DEVOPENSTRUC;
 
+       PDEVOPENDATA = PDevOpenStruc;
+
        PRINTDEST = record
 	  cb : cardinal;
 	  lType : longint;
@@ -248,3 +277,9 @@ const
   implementation
   
 end.
+{
+  $Log$
+  Revision 1.6  1999-08-05 07:37:27  hajny
+    * 'solution' for a compiler problem
+
+}