uIMapObject.pas 365 B

1234567891011121314151617181920212223
  1. unit uIMapObject;
  2. interface
  3. type
  4. IMapObject = interface(IInterface)
  5. ['{7B7ED33B-9EEC-451E-BE98-8D88CF4BE4D4}']
  6. function getObject(pvKey: string): TObject; stdcall;
  7. procedure removeObject(pvKey: string); stdcall;
  8. procedure setObject(pvKey: string; pvObject: TObject); stdcall;
  9. procedure freeAll(); stdcall;
  10. end;
  11. implementation
  12. end.