home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DOC / PROXIES.INT < prev   
Text File  |  1998-06-16  |  987b  |  26 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1995,98 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit Proxies;
  11.  
  12. interface
  13.  
  14. procedure CreateSubClass(Instance: TObject; const ClassName: string;
  15.   Ancestor: TClass);
  16. procedure DestroySubClass(Instance: TObject);
  17. procedure RenameSubClass(Instance: TObject; const ClassName: string);
  18. function GetSubClassInstance(Proxy: TClass): TObject;
  19. function CreateSubClassMethod(Instance: TObject;
  20.   const MethodName: string): Pointer;
  21. procedure RenameSubClassMethod(Instance: TObject; Method: Pointer;
  22.   const MethodName: string);
  23. procedure DestroySubClassMethod(Instance: TObject; Method: Pointer);
  24.  
  25. implementation
  26.