DefinedClassesInputMethodKit.pas 629 B

1234567891011121314151617181920212223
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. unit DefinedClassesInputMethodKit;
  6. interface
  7. type
  8. IMKCandidates = objcclass external;
  9. IMKInputController = objcclass external;
  10. IMKServer = objcclass external;
  11. IMKMouseHandlingProtocol = objcprotocol external name 'IMKMouseHandling';
  12. IMKStateSettingProtocol = objcprotocol external name 'IMKStateSetting';
  13. type
  14. IMKCandidatesPrivate = objcclass external;
  15. IMKInputControllerPrivate = objcclass external;
  16. IMKServerPrivate = objcclass external;
  17. IMKServerProxyProtocol = objcprotocol external name 'IMKServerProxy';
  18. implementation
  19. end.