Browse Source

+ dummy for De/AllocateHWnd

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

+ 16 - 1
rtl/win64/classes.pp

@@ -35,7 +35,10 @@ type
 function MakeObjectInstance(Method: TWndMethod): Pointer;
 function MakeObjectInstance(Method: TWndMethod): Pointer;
 procedure FreeObjectInstance(ObjectInstance: Pointer);
 procedure FreeObjectInstance(ObjectInstance: Pointer);
 
 
-  {$i classesh.inc}
+function AllocateHWnd(Method: TWndMethod): HWND;
+procedure DeallocateHWnd(Wnd: HWND);
+
+{$i classesh.inc}
 
 
 implementation
 implementation
 
 
@@ -57,6 +60,18 @@ procedure FreeObjectInstance(ObjectInstance: Pointer);
   end;
   end;
 
 
 
 
+function AllocateHWnd(Method: TWndMethod): HWND;
+  begin
+    runerror(211);
+  end;
+
+
+procedure DeallocateHWnd(Wnd: HWND);
+  begin
+    runerror(211);
+  end;
+
+
 initialization
 initialization
   CommonInit;
   CommonInit;