comobj.inc 803 B

12345678910111213141516171819202122232425262728
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2002 by Florian Klaempfl
  5. member of the Free Pascal development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$ifndef FPC_COMOBJ_HAS_CREATE_CLASS_ID}
  13. { any ideas for a generic implementation? }
  14. function CreateClassID : ansistring;
  15. begin
  16. result:='';
  17. end;
  18. {$endif FPC_COMOBJ_HAS_CREATE_CLASS_ID}
  19. {
  20. $Log$
  21. Revision 1.1 2002-10-10 16:09:25 florian
  22. + initial revision
  23. }