|
@@ -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;
|
|
|
|
|