12345678910111213141516171819202122232425 |
- {$mode delphi}
- {$modeswitch objectivec1}
- {$modeswitch cvar}
- {$packrecords c}
- {$IFNDEF FPC_DOTTEDUNITS}
- unit DefinedClassesInputMethodKit;
- {$ENDIF FPC_DOTTEDUNITS}
- interface
- type
- IMKCandidates = objcclass external;
- IMKInputController = objcclass external;
- IMKServer = objcclass external;
- IMKMouseHandlingProtocol = objcprotocol external name 'IMKMouseHandling';
- IMKStateSettingProtocol = objcprotocol external name 'IMKStateSetting';
- type
- IMKCandidatesPrivate = objcclass external;
- IMKInputControllerPrivate = objcclass external;
- IMKServerPrivate = objcclass external;
- IMKServerProxyProtocol = objcprotocol external name 'IMKServerProxy';
- implementation
- end.
|