blob: f8b9cd32ba4ceaf6d7738bf8355fddec0efade49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{$mode delphi}
{$modeswitch objectivec1}
{$modeswitch cvar}
{$packrecords c}
unit DefinedClassesInputMethodKit;
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.
|