Browse Source

* Make/FreeObjectInstance dummies

git-svn-id: trunk@3406 -
florian 19 years ago
parent
commit
d6bc277ac5
1 changed files with 16 additions and 1 deletions
  1. 16 1
      rtl/win64/classes.pp

+ 16 - 1
rtl/win64/classes.pp

@@ -32,7 +32,10 @@ uses
 type
 type
   TWndMethod = procedure(var msg : TMessage) of object;
   TWndMethod = procedure(var msg : TMessage) of object;
 
 
-{$i classesh.inc}
+function MakeObjectInstance(Method: TWndMethod): Pointer;
+procedure FreeObjectInstance(ObjectInstance: Pointer);
+
+  {$i classesh.inc}
 
 
 implementation
 implementation
 
 
@@ -42,6 +45,18 @@ uses
 { OS - independent class implementations are in /inc directory. }
 { OS - independent class implementations are in /inc directory. }
 {$i classes.inc}
 {$i classes.inc}
 
 
+function MakeObjectInstance(Method: TWndMethod): Pointer;
+  begin
+    runerror(211);
+  end;
+
+
+procedure FreeObjectInstance(ObjectInstance: Pointer);
+  begin
+    runerror(211);
+  end;
+
+
 initialization
 initialization
   CommonInit;
   CommonInit;