소스 검색

+ dummy for De/AllocateHWnd

git-svn-id: trunk@3408 -
florian 19 년 전
부모
커밋
e2085cf71b
1개의 변경된 파일16개의 추가작업 그리고 1개의 파일을 삭제
  1. 16 1
      rtl/win64/classes.pp

+ 16 - 1
rtl/win64/classes.pp

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